Package odata.msgraph.client.enums
Enum PrintJobStateDetail
- java.lang.Object
-
- java.lang.Enum<PrintJobStateDetail>
-
- odata.msgraph.client.enums.PrintJobStateDetail
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<PrintJobStateDetail>
public enum PrintJobStateDetail extends Enum<PrintJobStateDetail> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETED_SUCCESSFULLYCOMPLETED_WITH_ERRORSCOMPLETED_WITH_WARNINGSINTERPRETINGRELEASE_WAITTRANSFORMINGUNKNOWN_FUTURE_VALUEUPLOAD_PENDING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static PrintJobStateDetailvalueOf(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.
-
-
-
Enum Constant Detail
-
UPLOAD_PENDING
public static final PrintJobStateDetail UPLOAD_PENDING
-
TRANSFORMING
public static final PrintJobStateDetail TRANSFORMING
-
COMPLETED_SUCCESSFULLY
public static final PrintJobStateDetail COMPLETED_SUCCESSFULLY
-
COMPLETED_WITH_WARNINGS
public static final PrintJobStateDetail COMPLETED_WITH_WARNINGS
-
COMPLETED_WITH_ERRORS
public static final PrintJobStateDetail COMPLETED_WITH_ERRORS
-
RELEASE_WAIT
public static final PrintJobStateDetail RELEASE_WAIT
-
INTERPRETING
public static final PrintJobStateDetail INTERPRETING
-
UNKNOWN_FUTURE_VALUE
public static final PrintJobStateDetail UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static PrintJobStateDetail[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PrintJobStateDetail c : PrintJobStateDetail.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrintJobStateDetail valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-