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