public enum EnumDecimateCropResult extends java.lang.Enum<EnumDecimateCropResult>
| Enum Constant and Description |
|---|
PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_CROP
The PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_CROP.
|
PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_DECIMATE
The PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_DECIMATE.
|
PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_FAIL
The PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_FAIL.
|
PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_CROP
The PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_CROP.
|
PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_DECIMATE
The PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_DECIMATE.
|
PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_FAIL
The PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_FAIL.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumDecimateCropResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumDecimateCropResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumDecimateCropResult PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_DECIMATE
public static final EnumDecimateCropResult PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_CROP
public static final EnumDecimateCropResult PRINTER_DOES_NOT_SUPPORTS_DECIMATE_CROP_RESULT_FAIL
public static final EnumDecimateCropResult PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_DECIMATE
public static final EnumDecimateCropResult PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_CROP
public static final EnumDecimateCropResult PRINTER_SUPPORTS_DECIMATE_CROP_RESULT_FAIL
public static EnumDecimateCropResult[] values()
for (EnumDecimateCropResult c : EnumDecimateCropResult.values()) System.out.println(c);
public static EnumDecimateCropResult 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 java.lang.String getValue()