public static enum MetaGroup.AppliesTo extends java.lang.Enum<MetaGroup.AppliesTo>
| Enum Constant and Description |
|---|
IGNORABLE
The meta-group applies to the ignorable.
|
SOURCE
The meta-group applies to the source.
|
TARGET
The meta-group applies to the target.
|
UNDEFINED
The meta-group does not applies to a specific type of object.
|
| Modifier and Type | Method and Description |
|---|---|
static MetaGroup.AppliesTo |
fromString(java.lang.String name) |
java.lang.String |
toString() |
static MetaGroup.AppliesTo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetaGroup.AppliesTo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaGroup.AppliesTo UNDEFINED
public static final MetaGroup.AppliesTo SOURCE
public static final MetaGroup.AppliesTo TARGET
public static final MetaGroup.AppliesTo IGNORABLE
public static MetaGroup.AppliesTo[] values()
for (MetaGroup.AppliesTo c : MetaGroup.AppliesTo.values()) System.out.println(c);
public static MetaGroup.AppliesTo valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<MetaGroup.AppliesTo>public static MetaGroup.AppliesTo fromString(java.lang.String name)