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