Enum Constant and Description |
---|
Both
Draw both high and low error values
|
High
Draw high error value only
|
Low
Draw low error value only
|
Modifier and Type | Method and Description |
---|---|
static ErrorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorMode High
public static final ErrorMode Low
public static final ErrorMode Both
public static ErrorMode[] values()
for (ErrorMode c : ErrorMode.values()) System.out.println(c);
public static ErrorMode 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