Package odata.msgraph.client.beta.enums
Enum PrinterProcessingStateReason
- java.lang.Object
-
- java.lang.Enum<PrinterProcessingStateReason>
-
- odata.msgraph.client.beta.enums.PrinterProcessingStateReason
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<PrinterProcessingStateReason>
public enum PrinterProcessingStateReason extends Enum<PrinterProcessingStateReason> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static PrinterProcessingStateReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static PrinterProcessingStateReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAUSED
public static final PrinterProcessingStateReason PAUSED
-
MEDIA_JAM
public static final PrinterProcessingStateReason MEDIA_JAM
-
MEDIA_NEEDED
public static final PrinterProcessingStateReason MEDIA_NEEDED
-
MEDIA_LOW
public static final PrinterProcessingStateReason MEDIA_LOW
-
MEDIA_EMPTY
public static final PrinterProcessingStateReason MEDIA_EMPTY
-
COVER_OPEN
public static final PrinterProcessingStateReason COVER_OPEN
-
INTERLOCK_OPEN
public static final PrinterProcessingStateReason INTERLOCK_OPEN
-
OUTPUT_TRAY_MISSING
public static final PrinterProcessingStateReason OUTPUT_TRAY_MISSING
-
OUTPUT_AREA_FULL
public static final PrinterProcessingStateReason OUTPUT_AREA_FULL
-
MARKER_SUPPLY_LOW
public static final PrinterProcessingStateReason MARKER_SUPPLY_LOW
-
MARKER_SUPPLY_EMPTY
public static final PrinterProcessingStateReason MARKER_SUPPLY_EMPTY
-
INPUT_TRAY_MISSING
public static final PrinterProcessingStateReason INPUT_TRAY_MISSING
-
OUTPUT_AREA_ALMOST_FULL
public static final PrinterProcessingStateReason OUTPUT_AREA_ALMOST_FULL
-
MARKER_WASTE_ALMOST_FULL
public static final PrinterProcessingStateReason MARKER_WASTE_ALMOST_FULL
-
MARKER_WASTE_FULL
public static final PrinterProcessingStateReason MARKER_WASTE_FULL
-
FUSER_OVER_TEMP
public static final PrinterProcessingStateReason FUSER_OVER_TEMP
-
FUSER_UNDER_TEMP
public static final PrinterProcessingStateReason FUSER_UNDER_TEMP
-
OTHER
public static final PrinterProcessingStateReason OTHER
-
NONE
public static final PrinterProcessingStateReason NONE
-
MOVING_TO_PAUSED
public static final PrinterProcessingStateReason MOVING_TO_PAUSED
-
SHUTDOWN
public static final PrinterProcessingStateReason SHUTDOWN
-
CONNECTING_TO_DEVICE
public static final PrinterProcessingStateReason CONNECTING_TO_DEVICE
-
TIMED_OUT
public static final PrinterProcessingStateReason TIMED_OUT
-
STOPPING
public static final PrinterProcessingStateReason STOPPING
-
STOPPED_PARTIALLY
public static final PrinterProcessingStateReason STOPPED_PARTIALLY
-
TONER_LOW
public static final PrinterProcessingStateReason TONER_LOW
-
TONER_EMPTY
public static final PrinterProcessingStateReason TONER_EMPTY
-
SPOOL_AREA_FULL
public static final PrinterProcessingStateReason SPOOL_AREA_FULL
-
DOOR_OPEN
public static final PrinterProcessingStateReason DOOR_OPEN
-
OPTICAL_PHOTO_CONDUCTOR_NEAR_END_OF_LIFE
public static final PrinterProcessingStateReason OPTICAL_PHOTO_CONDUCTOR_NEAR_END_OF_LIFE
-
OPTICAL_PHOTO_CONDUCTOR_LIFE_OVER
public static final PrinterProcessingStateReason OPTICAL_PHOTO_CONDUCTOR_LIFE_OVER
-
DEVELOPER_LOW
public static final PrinterProcessingStateReason DEVELOPER_LOW
-
DEVELOPER_EMPTY
public static final PrinterProcessingStateReason DEVELOPER_EMPTY
-
INTERPRETER_RESOURCE_UNAVAILABLE
public static final PrinterProcessingStateReason INTERPRETER_RESOURCE_UNAVAILABLE
-
UNKNOWN_FUTURE_VALUE
public static final PrinterProcessingStateReason UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static PrinterProcessingStateReason[] 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 (PrinterProcessingStateReason c : PrinterProcessingStateReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrinterProcessingStateReason 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
-
-