public enum PairEnum extends Enum<PairEnum>
| Enum Constant and Description |
|---|
PAIR
Number of pairs emitted
|
PAIR_COMBINED
Number of pairs emitted by combiners
|
UNARY
Number of unary counts emitted
|
UNARY_COMBINED
Number of unary counts emitted by combiners
|
| Modifier and Type | Method and Description |
|---|---|
static PairEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PairEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PairEnum PAIR_COMBINED
public static final PairEnum UNARY_COMBINED
public static PairEnum[] values()
for (PairEnum c : PairEnum.values()) System.out.println(c);
public static PairEnum 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 null