public enum JobServiceBenchOperation extends Enum<JobServiceBenchOperation>
Enum Constant and Description |
---|
CREATE_FILES |
DISTRIBUTED_LOAD |
NO_OP |
Modifier and Type | Method and Description |
---|---|
static JobServiceBenchOperation |
fromString(String text)
Creates an instance type from the string.
|
String |
toString() |
static JobServiceBenchOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobServiceBenchOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobServiceBenchOperation CREATE_FILES
public static final JobServiceBenchOperation DISTRIBUTED_LOAD
public static final JobServiceBenchOperation NO_OP
public static JobServiceBenchOperation[] values()
for (JobServiceBenchOperation c : JobServiceBenchOperation.values()) System.out.println(c);
public static JobServiceBenchOperation 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 String toString()
toString
in class Enum<JobServiceBenchOperation>
public static JobServiceBenchOperation fromString(String text)
text
- the instance type in stringCopyright © 2023. All Rights Reserved.