org.apache.hadoop.hive.ql.exec.vector.expressions
Enum VectorExpression.Type

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

public static enum VectorExpression.Type
extends Enum<VectorExpression.Type>


Enum Constant Summary
DATE
           
OTHER
           
STRING
           
TIMESTAMP
           
 
Method Summary
static VectorExpression.Type getValue(String name)
           
static VectorExpression.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VectorExpression.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STRING

public static final VectorExpression.Type STRING

TIMESTAMP

public static final VectorExpression.Type TIMESTAMP

DATE

public static final VectorExpression.Type DATE

OTHER

public static final VectorExpression.Type OTHER
Method Detail

values

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

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

valueOf

public static VectorExpression.Type 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

getValue

public static VectorExpression.Type getValue(String name)


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