public enum EnumTolerance extends java.lang.Enum<EnumTolerance>
| Enum Constant and Description |
|---|
BOTH_1 |
BOTH_2 |
BOTH_3 |
BOTH_4 |
BOTH_5 |
DOWN_1 |
DOWN_2 |
DOWN_3 |
DOWN_4 |
DOWN_5 |
NONE |
UP_1 |
UP_2 |
UP_3 |
UP_4 |
UP_5 |
| Modifier and Type | Method and Description |
|---|---|
static EnumTolerance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumTolerance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumTolerance NONE
public static final EnumTolerance BOTH_1
public static final EnumTolerance BOTH_2
public static final EnumTolerance BOTH_3
public static final EnumTolerance BOTH_4
public static final EnumTolerance BOTH_5
public static final EnumTolerance UP_1
public static final EnumTolerance UP_2
public static final EnumTolerance UP_3
public static final EnumTolerance UP_4
public static final EnumTolerance UP_5
public static final EnumTolerance DOWN_1
public static final EnumTolerance DOWN_2
public static final EnumTolerance DOWN_3
public static final EnumTolerance DOWN_4
public static final EnumTolerance DOWN_5
public static EnumTolerance[] values()
for (EnumTolerance c : EnumTolerance.values()) System.out.println(c);
public static EnumTolerance 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