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