public enum PrintTaskProcessingState extends java.lang.Enum<PrintTaskProcessingState>
| Enum Constant and Description |
|---|
ABORTED
aborted
|
COMPLETED
completed
|
PENDING
pending
|
PROCESSING
processing
|
UNEXPECTED_VALUE
For PrintTaskProcessingState values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static PrintTaskProcessingState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintTaskProcessingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintTaskProcessingState PENDING
public static final PrintTaskProcessingState PROCESSING
public static final PrintTaskProcessingState COMPLETED
public static final PrintTaskProcessingState ABORTED
public static final PrintTaskProcessingState UNKNOWN_FUTURE_VALUE
public static final PrintTaskProcessingState UNEXPECTED_VALUE
public static PrintTaskProcessingState[] values()
for (PrintTaskProcessingState c : PrintTaskProcessingState.values()) System.out.println(c);
public static PrintTaskProcessingState 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