public enum FaxVerticalResolution extends java.lang.Enum<FaxVerticalResolution>
Enum Constant | Description |
---|---|
HIGH |
A vertical resolution of 196 DPI (dots per inch)
|
STANDARD |
A vertical resolution of 98 DPI (dots per inch)
|
Modifier and Type | Method | Description |
---|---|---|
static FaxVerticalResolution |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static FaxVerticalResolution[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FaxVerticalResolution STANDARD
public static final FaxVerticalResolution HIGH
public static FaxVerticalResolution[] values()
for (FaxVerticalResolution c : FaxVerticalResolution.values()) System.out.println(c);
public static FaxVerticalResolution 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 null