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