public enum StatisticsFormat extends Enum<StatisticsFormat>
FlamByteInterface.close(StatisticsFormat)
and
FlamByteInterface.close(boolean, StatisticsFormat)
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 StatisticsFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatisticsFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticsFormat DEFAULT
public static final StatisticsFormat LIST
public static final StatisticsFormat XML
public static StatisticsFormat[] values()
for (StatisticsFormat c : StatisticsFormat.values()) System.out.println(c);
public static StatisticsFormat 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()