public static enum AttributeDefinition.AttributeType extends Enum<AttributeDefinition.AttributeType>
Enum Constant and Description |
---|
BOOLEAN
The data type for the attribute is a Boolean.
|
DATE
The data type for the attribute is a date.
|
LONG
The data type for the attribute is a long.
|
STRING
The data type for the attribute is a character-based string.
|
Modifier and Type | Method and Description |
---|---|
static AttributeDefinition.AttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeDefinition.AttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeDefinition.AttributeType LONG
long
value between
-263 and 263-1.public static final AttributeDefinition.AttributeType STRING
public static final AttributeDefinition.AttributeType DATE
public static final AttributeDefinition.AttributeType BOOLEAN
public static AttributeDefinition.AttributeType[] values()
for (AttributeDefinition.AttributeType c : AttributeDefinition.AttributeType.values()) System.out.println(c);
public static AttributeDefinition.AttributeType 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 (c) 2019, SAS Institute Inc., Cary, NC, USA