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