public enum EnumPrintPreference extends 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(String v) |
String |
value() |
static EnumPrintPreference |
valueOf(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String value()
public static EnumPrintPreference fromValue(String v)
Copyright © 2012. All Rights Reserved.