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