public enum HelpSubject extends Enum<HelpSubject>
FlamByteInterface.getSyntax(HelpSubject, int, String)
or
FlamByteInterface.getHelp(HelpSubject, int, String)
Enum Constant and Description |
---|
INFO
Get info about definition of the info string
|
INPUT_FILE
Get info about file definition strings in input mode
|
OUTPUT_FILE
Get info about file definition strings in output mode
|
READ_FILE
Get info about file definition strings in read mode
|
READ_FORMAT
Get info about format strings in read mode
|
STATE
Get info about definition of the state string
|
WRITE_FILE
Get info about file definition strings in write mode
|
WRITE_FORMAT
Get info about format strings in write mode
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static HelpSubject |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HelpSubject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HelpSubject READ_FILE
public static final HelpSubject READ_FORMAT
public static final HelpSubject WRITE_FILE
public static final HelpSubject WRITE_FORMAT
public static final HelpSubject INPUT_FILE
public static final HelpSubject OUTPUT_FILE
public static final HelpSubject INFO
public static final HelpSubject STATE
public static HelpSubject[] values()
for (HelpSubject c : HelpSubject.values()) System.out.println(c);
public static HelpSubject 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()