public static enum IOCommand.IOCommandType extends Enum<IOCommand.IOCommandType>
Enum Constant and Description |
---|
LOAD_PARTITION
Loading a partition
|
STORE_BUFFER
Storing message/buffer raw data buffer of a currently out-of-core
partition
|
STORE_MESSAGE
Storing incoming messages of a partition
|
STORE_PARTITION
Storing a partition
|
WAIT
Doing nothing regarding IO
|
Modifier and Type | Method and Description |
---|---|
static IOCommand.IOCommandType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IOCommand.IOCommandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOCommand.IOCommandType LOAD_PARTITION
public static final IOCommand.IOCommandType STORE_PARTITION
public static final IOCommand.IOCommandType STORE_MESSAGE
public static final IOCommand.IOCommandType STORE_BUFFER
public static final IOCommand.IOCommandType WAIT
public static IOCommand.IOCommandType[] values()
for (IOCommand.IOCommandType c : IOCommand.IOCommandType.values()) System.out.println(c);
public static IOCommand.IOCommandType 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 © 2011-2020 The Apache Software Foundation. All Rights Reserved.