protected static enum Recorder.SessionWriterCommand extends Enum<Recorder.SessionWriterCommand>
| Enum Constant and Description |
|---|
CLOSE
Close Command
|
OPENFILE
Open File Command
|
WRITE
Write Command
|
| Modifier and Type | Method and Description |
|---|---|
static Recorder.SessionWriterCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Recorder.SessionWriterCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Recorder.SessionWriterCommand CLOSE
public static final Recorder.SessionWriterCommand OPENFILE
public static final Recorder.SessionWriterCommand WRITE
public static Recorder.SessionWriterCommand[] values()
for (Recorder.SessionWriterCommand c : Recorder.SessionWriterCommand.values()) System.out.println(c);
public static Recorder.SessionWriterCommand 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. All rights reserved.