public static enum AttributeDeclaration.DataType extends Enum<AttributeDeclaration.DataType>
Enum Constant and Description |
---|
BOOLEAN |
DATE |
DATE_TIME |
DECIMAL |
INTEGER |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static AttributeDeclaration.DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeDeclaration.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeDeclaration.DataType UNKNOWN
public static final AttributeDeclaration.DataType DATE
public static final AttributeDeclaration.DataType DATE_TIME
public static final AttributeDeclaration.DataType DECIMAL
public static final AttributeDeclaration.DataType BOOLEAN
public static final AttributeDeclaration.DataType INTEGER
public static AttributeDeclaration.DataType[] values()
for (AttributeDeclaration.DataType c : AttributeDeclaration.DataType.values()) System.out.println(c);
public static AttributeDeclaration.DataType 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 © 2022. All rights reserved.