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