public static enum Statistic.State extends Enum<Statistic.State>
Modifier and Type | Method and Description |
---|---|
static Statistic.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statistic.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Statistic.State INIT
public static final Statistic.State CONFIG
public static final Statistic.State MERGE
public static final Statistic.State COMPLETE
public static Statistic.State[] values()
for (Statistic.State c : Statistic.State.values()) System.out.println(c);
public static Statistic.State 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 © 1970 The Apache Software Foundation. All rights reserved.