public enum EnumPrintPreference extends java.lang.Enum<EnumPrintPreference>
Java class for EnumPrintPreference.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EnumPrintPreference">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Balanced"/>
<enumeration value="CostEffective"/>
<enumeration value="Fastest"/>
<enumeration value="HightestQuality"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BALANCED |
COST_EFFECTIVE |
FASTEST |
HIGHTEST_QUALITY |
| Modifier and Type | Method and Description |
|---|---|
static EnumPrintPreference |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static EnumPrintPreference |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPrintPreference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPrintPreference BALANCED
public static final EnumPrintPreference COST_EFFECTIVE
public static final EnumPrintPreference FASTEST
public static final EnumPrintPreference HIGHTEST_QUALITY
public static EnumPrintPreference[] values()
for (EnumPrintPreference c : EnumPrintPreference.values()) System.out.println(c);
public static EnumPrintPreference 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 value()
public static EnumPrintPreference fromValue(java.lang.String v)
Copyright © 2012. All Rights Reserved.