public static enum TransformationResult.Status extends java.lang.Enum<TransformationResult.Status>
| Enum Constant and Description |
|---|
COMPLETE |
ERROR |
INCOMPLETE |
| Modifier and Type | Method and Description |
|---|---|
static TransformationResult.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransformationResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformationResult.Status COMPLETE
public static final TransformationResult.Status INCOMPLETE
public static final TransformationResult.Status ERROR
public static TransformationResult.Status[] values()
for (TransformationResult.Status c : TransformationResult.Status.values()) System.out.println(c);
public static TransformationResult.Status 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 nullCopyright © 2018 Oracle Corporation. All Rights Reserved.