public enum StatisticFormat extends Enum<StatisticFormat>
FlamByteInterface.close(StatisticFormat)
and
FlamByteInterface.close(boolean, StatisticFormat)
Enum Constant and Description |
---|
DEFAULT
Use default statistics format
|
LIST
Output statistics as plain text lines
|
XML
Output statistics as XML
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static StatisticFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatisticFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticFormat DEFAULT
public static final StatisticFormat LIST
public static final StatisticFormat XML
public static StatisticFormat[] values()
for (StatisticFormat c : StatisticFormat.values()) System.out.println(c);
public static StatisticFormat 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 nullpublic int getValue()