public static enum TransformationResult.Status extends Enum<TransformationResult.Status>
Enum Constant and Description |
---|
COMPLETE |
ERROR |
INCOMPLETE |
Modifier and Type | Method and Description |
---|---|
static TransformationResult.Status |
valueOf(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(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 © 2014 Oracle Corporation. All rights reserved.