org.apache.cassandra.cql3
Enum Term.Type

java.lang.Object
  extended by java.lang.Enum<Term.Type>
      extended by org.apache.cassandra.cql3.Term.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Term.Type>
Enclosing class:
Term

public static enum Term.Type
extends java.lang.Enum<Term.Type>


Enum Constant Summary
BOOLEAN
           
FLOAT
           
INTEGER
           
QMARK
           
STRING
           
UUID
           
 
Method Summary
static Term.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Term.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
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

STRING

public static final Term.Type STRING

INTEGER

public static final Term.Type INTEGER

UUID

public static final Term.Type UUID

FLOAT

public static final Term.Type FLOAT

BOOLEAN

public static final Term.Type BOOLEAN

QMARK

public static final Term.Type QMARK
Method Detail

values

public static Term.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 (Term.Type c : Term.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 Term.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2012 The Apache Software Foundation