public static enum GroovyTriple.DATA_MODEL extends Enum<GroovyTriple.DATA_MODEL>
Enum Constant and Description |
---|
BUSINESS_DATA_ATTR |
BUSINESS_RELATION_ATTRIBUTE |
META_ATTR |
Modifier and Type | Method and Description |
---|---|
static GroovyTriple.DATA_MODEL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroovyTriple.DATA_MODEL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroovyTriple.DATA_MODEL BUSINESS_DATA_ATTR
public static final GroovyTriple.DATA_MODEL BUSINESS_RELATION_ATTRIBUTE
public static final GroovyTriple.DATA_MODEL META_ATTR
public static GroovyTriple.DATA_MODEL 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 nullpublic static GroovyTriple.DATA_MODEL[] values()
for (GroovyTriple.DATA_MODEL c : GroovyTriple.DATA_MODEL.values()) System.out.println(c);