public enum JavaAttributeType extends Enum<JavaAttributeType>
| Enum Constant and Description |
|---|
BIGDECIMAL |
BOOLEAN |
BYTE |
CHARACTER |
DATETIME |
INTEGER |
LIST |
LONG |
SHORT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static JavaAttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaAttributeType BOOLEAN
public static final JavaAttributeType CHARACTER
public static final JavaAttributeType BYTE
public static final JavaAttributeType STRING
public static final JavaAttributeType INTEGER
public static final JavaAttributeType LONG
public static final JavaAttributeType SHORT
public static final JavaAttributeType BIGDECIMAL
public static final JavaAttributeType DATETIME
public static final JavaAttributeType LIST
public Class<?> clazz
public static JavaAttributeType[] values()
for (JavaAttributeType c : JavaAttributeType.values()) System.out.println(c);
public static JavaAttributeType 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 nullCopyright © 2020. All rights reserved.