org.apache.hadoop.hive.ql.exec
Enum FileSinkOperator.TableIdEnum

java.lang.Object
  extended by java.lang.Enum<FileSinkOperator.TableIdEnum>
      extended by org.apache.hadoop.hive.ql.exec.FileSinkOperator.TableIdEnum
All Implemented Interfaces:
Serializable, Comparable<FileSinkOperator.TableIdEnum>
Enclosing class:
FileSinkOperator

public static enum FileSinkOperator.TableIdEnum
extends Enum<FileSinkOperator.TableIdEnum>

TableIdEnum.


Enum Constant Summary
TABLE_ID_1_ROWCOUNT
           
TABLE_ID_10_ROWCOUNT
           
TABLE_ID_11_ROWCOUNT
           
TABLE_ID_12_ROWCOUNT
           
TABLE_ID_13_ROWCOUNT
           
TABLE_ID_14_ROWCOUNT
           
TABLE_ID_15_ROWCOUNT
           
TABLE_ID_2_ROWCOUNT
           
TABLE_ID_3_ROWCOUNT
           
TABLE_ID_4_ROWCOUNT
           
TABLE_ID_5_ROWCOUNT
           
TABLE_ID_6_ROWCOUNT
           
TABLE_ID_7_ROWCOUNT
           
TABLE_ID_8_ROWCOUNT
           
TABLE_ID_9_ROWCOUNT
           
 
Method Summary
static FileSinkOperator.TableIdEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FileSinkOperator.TableIdEnum[] 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

TABLE_ID_1_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_1_ROWCOUNT

TABLE_ID_2_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_2_ROWCOUNT

TABLE_ID_3_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_3_ROWCOUNT

TABLE_ID_4_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_4_ROWCOUNT

TABLE_ID_5_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_5_ROWCOUNT

TABLE_ID_6_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_6_ROWCOUNT

TABLE_ID_7_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_7_ROWCOUNT

TABLE_ID_8_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_8_ROWCOUNT

TABLE_ID_9_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_9_ROWCOUNT

TABLE_ID_10_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_10_ROWCOUNT

TABLE_ID_11_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_11_ROWCOUNT

TABLE_ID_12_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_12_ROWCOUNT

TABLE_ID_13_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_13_ROWCOUNT

TABLE_ID_14_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_14_ROWCOUNT

TABLE_ID_15_ROWCOUNT

public static final FileSinkOperator.TableIdEnum TABLE_ID_15_ROWCOUNT
Method Detail

values

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

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

valueOf

public static FileSinkOperator.TableIdEnum 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 © 2012 The Apache Software Foundation