public enum AboveBelow extends java.lang.Enum<AboveBelow>
| Enum Constant and Description |
|---|
AboveAverage
Specifies above average.
|
AboveStdDev
Specifies above the standard deviation.
|
BelowAverage
Specifies below average.
|
BelowStdDev
Specifies below the standard deviation.
|
EqualAboveAverage
Specifies equal or above average.
|
EqualBelowAverage
Specifies equal or below average.
|
| Modifier and Type | Method and Description |
|---|---|
static AboveBelow |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AboveBelow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AboveBelow AboveAverage
public static final AboveBelow BelowAverage
public static final AboveBelow EqualAboveAverage
public static final AboveBelow EqualBelowAverage
public static final AboveBelow AboveStdDev
public static final AboveBelow BelowStdDev
public static AboveBelow[] values()
for (AboveBelow c : AboveBelow.values()) System.out.println(c);
public static AboveBelow 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