org.apache.accumulo.core.client.mapreduce.lib.impl
Enum InputConfigurator.Features
java.lang.Object
java.lang.Enum<InputConfigurator.Features>
org.apache.accumulo.core.client.mapreduce.lib.impl.InputConfigurator.Features
- All Implemented Interfaces:
- Serializable, Comparable<InputConfigurator.Features>
- Enclosing class:
- InputConfigurator
public static enum InputConfigurator.Features
- extends Enum<InputConfigurator.Features>
Configuration keys for various features.
- Since:
- 1.6.0
AUTO_ADJUST_RANGES
public static final InputConfigurator.Features AUTO_ADJUST_RANGES
SCAN_ISOLATION
public static final InputConfigurator.Features SCAN_ISOLATION
USE_LOCAL_ITERATORS
public static final InputConfigurator.Features USE_LOCAL_ITERATORS
SCAN_OFFLINE
public static final InputConfigurator.Features SCAN_OFFLINE
values
public static InputConfigurator.Features[] 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 (InputConfigurator.Features c : InputConfigurator.Features.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static InputConfigurator.Features 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 name
NullPointerException
- if the argument is null
Copyright © 2015 Apache Accumulo Project. All rights reserved.