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