public static enum StatisticTest.H1 extends Enum<StatisticTest.H1>
Enum Constant and Description |
---|
GREATER_THAN |
LESS_THAN |
NOT_EQUAL |
Modifier and Type | Method and Description |
---|---|
static StatisticTest.H1 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatisticTest.H1[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticTest.H1 LESS_THAN
public static final StatisticTest.H1 GREATER_THAN
public static final StatisticTest.H1 NOT_EQUAL
public static StatisticTest.H1[] values()
for (StatisticTest.H1 c : StatisticTest.H1.values()) System.out.println(c);
public static StatisticTest.H1 valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.