protected static enum Reducer.manglingMode extends Enum<Reducer.manglingMode>
Modifier and Type | Method and Description |
---|---|
static Reducer.manglingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Reducer.manglingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Reducer.manglingMode none
public static final Reducer.manglingMode upString
public static final Reducer.manglingMode join
public static Reducer.manglingMode[] values()
for (Reducer.manglingMode c : Reducer.manglingMode.values()) System.out.println(c);
public static Reducer.manglingMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullsee also the complete user documentation .