public enum AttributePosition extends java.lang.Enum<AttributePosition>
Enum Constant and Description |
---|
LEFT_AND_RIGHT |
NOT_EXISTING |
ONLY_LEFT |
ONLY_RIGHT |
Modifier and Type | Method and Description |
---|---|
static AttributePosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributePosition ONLY_LEFT
public static final AttributePosition ONLY_RIGHT
public static final AttributePosition LEFT_AND_RIGHT
public static final AttributePosition NOT_EXISTING
public static AttributePosition[] values()
for (AttributePosition c : AttributePosition.values()) System.out.println(c);
public static AttributePosition 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 null