public enum PrintErrors extends java.lang.Enum<PrintErrors>
| Enum Constant and Description |
|---|
Blank
Print errors are blank.
|
Dash
Print errors are displayed as dashes.
|
Displayed
All print errors are displayed.
|
NA
Print errors are displayed as not available.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
SIZE |
| Modifier and Type | Method and Description |
|---|---|
static PrintErrors |
forValue(int value) |
int |
getValue() |
static PrintErrors |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintErrors Displayed
public static final PrintErrors Blank
public static final PrintErrors Dash
public static final PrintErrors NA
public static final int SIZE
public static PrintErrors[] values()
for (PrintErrors c : PrintErrors.values()) System.out.println(c);
public static PrintErrors 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 int getValue()
public static PrintErrors forValue(int value)