org.apache.accumulo.core.client.mapreduce
Enum InputFormatBase.RegexType

java.lang.Object
  extended by java.lang.Enum<InputFormatBase.RegexType>
      extended by org.apache.accumulo.core.client.mapreduce.InputFormatBase.RegexType
All Implemented Interfaces:
Serializable, Comparable<InputFormatBase.RegexType>
Enclosing class:
InputFormatBase<K,V>

Deprecated. since 1.4 use RegExFilter and InputFormatBase.addIterator(Configuration, IteratorSetting)

public static enum InputFormatBase.RegexType
extends Enum<InputFormatBase.RegexType>


Enum Constant Summary
COLUMN_FAMILY
          Deprecated.  
COLUMN_QUALIFIER
          Deprecated.  
ROW
          Deprecated.  
VALUE
          Deprecated.  
 
Method Summary
static InputFormatBase.RegexType valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static InputFormatBase.RegexType[] values()
          Deprecated. Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ROW

public static final InputFormatBase.RegexType ROW
Deprecated. 

COLUMN_FAMILY

public static final InputFormatBase.RegexType COLUMN_FAMILY
Deprecated. 

COLUMN_QUALIFIER

public static final InputFormatBase.RegexType COLUMN_QUALIFIER
Deprecated. 

VALUE

public static final InputFormatBase.RegexType VALUE
Deprecated. 
Method Detail

values

public static InputFormatBase.RegexType[] values()
Deprecated. 
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 (InputFormatBase.RegexType c : InputFormatBase.RegexType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static InputFormatBase.RegexType valueOf(String name)
Deprecated. 
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 © 2012 The Apache Software Foundation. All Rights Reserved.