public static enum AttributeDescr.Type extends Enum<AttributeDescr.Type>
Enum Constant and Description |
---|
BOOLEAN |
DATE |
EXPRESSION |
LIST |
NUMBER |
STRING |
Modifier and Type | Method and Description |
---|---|
static AttributeDescr.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeDescr.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeDescr.Type STRING
public static final AttributeDescr.Type NUMBER
public static final AttributeDescr.Type DATE
public static final AttributeDescr.Type BOOLEAN
public static final AttributeDescr.Type LIST
public static final AttributeDescr.Type EXPRESSION
public static AttributeDescr.Type[] values()
for (AttributeDescr.Type c : AttributeDescr.Type.values()) System.out.println(c);
public static AttributeDescr.Type 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 © 2001–2018 JBoss by Red Hat. All rights reserved.