public enum EnumTransformationType extends Enum<EnumTransformationType>
Enum Constant and Description |
---|
EXISTING
Transformation of an existing graph in the clean database.
|
NEW
Transformation of a graph in the dirty database.
|
Modifier and Type | Method and Description |
---|---|
static EnumTransformationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumTransformationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumTransformationType NEW
public static final EnumTransformationType EXISTING
public static EnumTransformationType[] values()
for (EnumTransformationType c : EnumTransformationType.values()) System.out.println(c);
public static EnumTransformationType 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 © 2013. All Rights Reserved.