public enum JsonTransformationDirection extends java.lang.Enum<JsonTransformationDirection>
| Enum Constant and Description |
|---|
FROM_VERSION
Transformation direction from some old state of the domain model to its current state
|
TO_VERSION
Transformation direction from the current state of the domain model to the state of specific version
|
| Modifier and Type | Method and Description |
|---|---|
static JsonTransformationDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonTransformationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonTransformationDirection TO_VERSION
public static final JsonTransformationDirection FROM_VERSION
public static JsonTransformationDirection[] values()
for (JsonTransformationDirection c : JsonTransformationDirection.values()) System.out.println(c);
public static JsonTransformationDirection 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 null