public static enum Transformation.Type extends Enum<Transformation.Type>
| Modifier and Type | Method and Description |
|---|---|
static Transformation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transformation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transformation.Type NUMBER
public static final Transformation.Type DATE
public static Transformation.Type[] values()
for (Transformation.Type c : Transformation.Type.values()) System.out.println(c);
public static Transformation.Type 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 nullCopyright © 2018–2021. All rights reserved.