org.apache.hadoop.hbase.mapreduce
Enum SyncTable.SyncMapper.Counter

java.lang.Object
  extended by java.lang.Enum<SyncTable.SyncMapper.Counter>
      extended by org.apache.hadoop.hbase.mapreduce.SyncTable.SyncMapper.Counter
All Implemented Interfaces:
Serializable, Comparable<SyncTable.SyncMapper.Counter>
Enclosing class:
SyncTable.SyncMapper

public static enum SyncTable.SyncMapper.Counter
extends Enum<SyncTable.SyncMapper.Counter>


Enum Constant Summary
BATCHES
           
DIFFERENTCELLVALUES
           
EMPTY_BATCHES
           
HASHES_MATCHED
           
HASHES_NOT_MATCHED
           
MATCHINGCELLS
           
MATCHINGROWS
           
RANGESMATCHED
           
RANGESNOTMATCHED
           
ROWSWITHDIFFS
           
SOURCEMISSINGCELLS
           
SOURCEMISSINGROWS
           
TARGETMISSINGCELLS
           
TARGETMISSINGROWS
           
 
Method Summary
static SyncTable.SyncMapper.Counter valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SyncTable.SyncMapper.Counter[] values()
          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

BATCHES

public static final SyncTable.SyncMapper.Counter BATCHES

HASHES_MATCHED

public static final SyncTable.SyncMapper.Counter HASHES_MATCHED

HASHES_NOT_MATCHED

public static final SyncTable.SyncMapper.Counter HASHES_NOT_MATCHED

SOURCEMISSINGROWS

public static final SyncTable.SyncMapper.Counter SOURCEMISSINGROWS

SOURCEMISSINGCELLS

public static final SyncTable.SyncMapper.Counter SOURCEMISSINGCELLS

TARGETMISSINGROWS

public static final SyncTable.SyncMapper.Counter TARGETMISSINGROWS

TARGETMISSINGCELLS

public static final SyncTable.SyncMapper.Counter TARGETMISSINGCELLS

ROWSWITHDIFFS

public static final SyncTable.SyncMapper.Counter ROWSWITHDIFFS

DIFFERENTCELLVALUES

public static final SyncTable.SyncMapper.Counter DIFFERENTCELLVALUES

MATCHINGROWS

public static final SyncTable.SyncMapper.Counter MATCHINGROWS

MATCHINGCELLS

public static final SyncTable.SyncMapper.Counter MATCHINGCELLS

EMPTY_BATCHES

public static final SyncTable.SyncMapper.Counter EMPTY_BATCHES

RANGESMATCHED

public static final SyncTable.SyncMapper.Counter RANGESMATCHED

RANGESNOTMATCHED

public static final SyncTable.SyncMapper.Counter RANGESNOTMATCHED
Method Detail

values

public static SyncTable.SyncMapper.Counter[] 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 (SyncTable.SyncMapper.Counter c : SyncTable.SyncMapper.Counter.values())
    System.out.println(c);

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

valueOf

public static SyncTable.SyncMapper.Counter 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 © 2007–2015 The Apache Software Foundation. All rights reserved.