AttributeDefinition.AttributeType
.@Deprecated public enum AttributeType extends Enum<AttributeType>
Enum Constant and Description |
---|
BOOLEAN
Deprecated.
A boolean value.
|
DATE
Deprecated.
A date value.
|
LONG
Deprecated.
A long numeric.
|
STRING
Deprecated.
A string value.
|
Modifier and Type | Method and Description |
---|---|
static AttributeType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static AttributeType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeType LONG
public static final AttributeType STRING
public static final AttributeType DATE
public static final AttributeType BOOLEAN
public static AttributeType[] values()
for (AttributeType c : AttributeType.values()) System.out.println(c);
public static 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