Package alluxio.stress.worker
Enum IOTaskResult.IOMode
- java.lang.Object
-
- java.lang.Enum<IOTaskResult.IOMode>
-
- alluxio.stress.worker.IOTaskResult.IOMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IOTaskResult.IOMode>
- Enclosing class:
- IOTaskResult
public static enum IOTaskResult.IOMode extends java.lang.Enum<IOTaskResult.IOMode>
The IO mode, either READ or WRITE.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IOTaskResult.IOModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IOTaskResult.IOMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final IOTaskResult.IOMode READ
-
WRITE
public static final IOTaskResult.IOMode WRITE
-
-
Method Detail
-
values
public static IOTaskResult.IOMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IOTaskResult.IOMode c : IOTaskResult.IOMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IOTaskResult.IOMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-