Enum ConfiguratorBase.ClientOpts
- java.lang.Object
-
- java.lang.Enum<ConfiguratorBase.ClientOpts>
-
- org.apache.accumulo.hadoopImpl.mapreduce.lib.ConfiguratorBase.ClientOpts
-
- All Implemented Interfaces:
Serializable
,Comparable<ConfiguratorBase.ClientOpts>
- Enclosing class:
- ConfiguratorBase
public static enum ConfiguratorBase.ClientOpts extends Enum<ConfiguratorBase.ClientOpts>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_PROPS
CLIENT_PROPS_FILE
IS_CONFIGURED
STORE_JOB_CALLED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfiguratorBase.ClientOpts
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConfiguratorBase.ClientOpts[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_PROPS
public static final ConfiguratorBase.ClientOpts CLIENT_PROPS
-
CLIENT_PROPS_FILE
public static final ConfiguratorBase.ClientOpts CLIENT_PROPS_FILE
-
IS_CONFIGURED
public static final ConfiguratorBase.ClientOpts IS_CONFIGURED
-
STORE_JOB_CALLED
public static final ConfiguratorBase.ClientOpts STORE_JOB_CALLED
-
-
Method Detail
-
values
public static ConfiguratorBase.ClientOpts[] 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 (ConfiguratorBase.ClientOpts c : ConfiguratorBase.ClientOpts.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfiguratorBase.ClientOpts valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-