public enum EnumPrintJobEventTypeID extends java.lang.Enum<EnumPrintJobEventTypeID> implements IEventTypeID
| Enum Constant and Description |
|---|
DONE |
FAILURE |
PENDING
short value representing MPPS Event Type ID
|
PRINTING |
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
Returns the short value of this enum.
|
static EnumPrintJobEventTypeID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPrintJobEventTypeID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPrintJobEventTypeID PENDING
public static final EnumPrintJobEventTypeID PRINTING
public static final EnumPrintJobEventTypeID DONE
public static final EnumPrintJobEventTypeID FAILURE
public static EnumPrintJobEventTypeID[] values()
for (EnumPrintJobEventTypeID c : EnumPrintJobEventTypeID.values()) System.out.println(c);
public static EnumPrintJobEventTypeID 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 nullpublic short getValue()
getValue in interface IEventTypeID