public static enum TypeDescriptor.Kind extends Enum<TypeDescriptor.Kind>
| Enum Constant and Description |
|---|
BOOLEAN |
COMPLEX_FLOAT |
FLOAT |
INTEGER |
OBJECT |
STRING |
UNICODE |
UNSIGNED_INTEGER |
VOID |
| Modifier and Type | Method and Description |
|---|---|
static TypeDescriptor.Kind |
forChar(char c) |
static TypeDescriptor.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeDescriptor.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeDescriptor.Kind BOOLEAN
public static final TypeDescriptor.Kind INTEGER
public static final TypeDescriptor.Kind UNSIGNED_INTEGER
public static final TypeDescriptor.Kind FLOAT
public static final TypeDescriptor.Kind COMPLEX_FLOAT
public static final TypeDescriptor.Kind OBJECT
public static final TypeDescriptor.Kind STRING
public static final TypeDescriptor.Kind UNICODE
public static final TypeDescriptor.Kind VOID
public static TypeDescriptor.Kind[] values()
for (TypeDescriptor.Kind c : TypeDescriptor.Kind.values()) System.out.println(c);
public static TypeDescriptor.Kind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static TypeDescriptor.Kind forChar(char c)
Copyright © 2023. All rights reserved.