public static enum GwoAutoPruneMode.Value extends java.lang.Enum<GwoAutoPruneMode.Value>
Enum Constant and Description |
---|
AGGRESSIVE
Aggressive auto-prune mode.
|
CONSERVATIVE
Conservative auto-prune mode.
|
NONE
None auto-prune mode.
|
NORMAL
Normal auto-prune mode.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the XML.
|
static GwoAutoPruneMode.Value |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GwoAutoPruneMode.Value[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GwoAutoPruneMode.Value AGGRESSIVE
public static final GwoAutoPruneMode.Value CONSERVATIVE
public static final GwoAutoPruneMode.Value NONE
public static final GwoAutoPruneMode.Value NORMAL
public static GwoAutoPruneMode.Value[] values()
for (GwoAutoPruneMode.Value c : GwoAutoPruneMode.Value.values()) System.out.println(c);
public static GwoAutoPruneMode.Value 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 toValue()