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