public static enum AttributeDefinition.AttributeType extends Enum<AttributeDefinition.AttributeType>
Enum Constant and Description |
---|
BOOLEAN
A boolean value.
|
DATE
A date value.
|
LONG
A long numeric.
|
STRING
A string value.
|
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
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) 2017, SAS Institute Inc., Cary, NC, USA