org.apache.hadoop.hive.common
Enum StatsSetupConst.StatDB

java.lang.Object
  extended by java.lang.Enum<StatsSetupConst.StatDB>
      extended by org.apache.hadoop.hive.common.StatsSetupConst.StatDB
All Implemented Interfaces:
Serializable, Comparable<StatsSetupConst.StatDB>
Enclosing class:
StatsSetupConst

public static enum StatsSetupConst.StatDB
extends Enum<StatsSetupConst.StatDB>


Enum Constant Summary
counter
           
custom
           
fs
           
hbase
           
jdbc
           
 
Method Summary
abstract  String getAggregator(org.apache.hadoop.conf.Configuration conf)
           
abstract  String getPublisher(org.apache.hadoop.conf.Configuration conf)
           
static StatsSetupConst.StatDB valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StatsSetupConst.StatDB[] 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

hbase

public static final StatsSetupConst.StatDB hbase

jdbc

public static final StatsSetupConst.StatDB jdbc

counter

public static final StatsSetupConst.StatDB counter

fs

public static final StatsSetupConst.StatDB fs

custom

public static final StatsSetupConst.StatDB custom
Method Detail

values

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

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

valueOf

public static StatsSetupConst.StatDB 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

getPublisher

public abstract String getPublisher(org.apache.hadoop.conf.Configuration conf)

getAggregator

public abstract String getAggregator(org.apache.hadoop.conf.Configuration conf)


Copyright © 2014 The Apache Software Foundation. All rights reserved.