public enum PrintQuality extends java.lang.Enum<PrintQuality>
+-------+---------------------------------------------------------+ | Value | Symbolic Name and Description | +-------+---------------------------------------------------------+ | '3' | 'draft': lowest quality available on the Printer | +-------+---------------------------------------------------------+ | '4' | 'normal': normal or intermediate quality on the Printer | +-------+---------------------------------------------------------+ | '5' | 'high': highest quality available on the Printer | +-------+---------------------------------------------------------+
| Enum Constant and Description |
|---|
DRAFT
Lowest quality available on the Printer.
|
HIGH
Highest quality available on the Printer.
|
NORMAL
Normal or intermediate quality on the Printer.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
Gets value.
|
static PrintQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintQuality DRAFT
public static final PrintQuality NORMAL
public static final PrintQuality HIGH
public static PrintQuality[] values()
for (PrintQuality c : PrintQuality.values()) System.out.println(c);
public static PrintQuality 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 byte getValue()
Copyright © 2018–2020. All rights reserved.