public enum PrintJobStateDetail extends java.lang.Enum<PrintJobStateDetail>
Enum Constant and Description |
---|
COMPLETED_SUCCESSFULLY
completed Successfully
|
COMPLETED_WITH_ERRORS
completed With Errors
|
COMPLETED_WITH_WARNINGS
completed With Warnings
|
INTERPRETING
interpreting
|
RELEASE_WAIT
release Wait
|
TRANSFORMING
transforming
|
UNEXPECTED_VALUE
For PrintJobStateDetail values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
UPLOAD_PENDING
upload Pending
|
Modifier and Type | Method and Description |
---|---|
static PrintJobStateDetail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintJobStateDetail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintJobStateDetail UPLOAD_PENDING
public static final PrintJobStateDetail TRANSFORMING
public static final PrintJobStateDetail COMPLETED_SUCCESSFULLY
public static final PrintJobStateDetail COMPLETED_WITH_WARNINGS
public static final PrintJobStateDetail COMPLETED_WITH_ERRORS
public static final PrintJobStateDetail RELEASE_WAIT
public static final PrintJobStateDetail INTERPRETING
public static final PrintJobStateDetail UNKNOWN_FUTURE_VALUE
public static final PrintJobStateDetail UNEXPECTED_VALUE
public static PrintJobStateDetail[] values()
for (PrintJobStateDetail c : PrintJobStateDetail.values()) System.out.println(c);
public static PrintJobStateDetail 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