org.dasein.persist.jdbc
Enum AutomatedSql.Operator

java.lang.Object
  extended by java.lang.Enum<AutomatedSql.Operator>
      extended by org.dasein.persist.jdbc.AutomatedSql.Operator
All Implemented Interfaces:
Serializable, Comparable<AutomatedSql.Operator>
Enclosing class:
AutomatedSql

public static enum AutomatedSql.Operator
extends Enum<AutomatedSql.Operator>


Enum Constant Summary
EQUALS
           
GREATER_THAN
           
GREATER_THAN_OR_EQUAL_TO
           
LESS_THAN
           
LESS_THAN_OR_EQUAL_TO
           
LIKE
           
NOT_EQUAL
           
 
Method Summary
 String toString()
           
static AutomatedSql.Operator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AutomatedSql.Operator[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EQUALS

public static final AutomatedSql.Operator EQUALS

LIKE

public static final AutomatedSql.Operator LIKE

NOT_EQUAL

public static final AutomatedSql.Operator NOT_EQUAL

GREATER_THAN

public static final AutomatedSql.Operator GREATER_THAN

GREATER_THAN_OR_EQUAL_TO

public static final AutomatedSql.Operator GREATER_THAN_OR_EQUAL_TO

LESS_THAN

public static final AutomatedSql.Operator LESS_THAN

LESS_THAN_OR_EQUAL_TO

public static final AutomatedSql.Operator LESS_THAN_OR_EQUAL_TO
Method Detail

values

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

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

valueOf

public static AutomatedSql.Operator 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

toString

public String toString()
Overrides:
toString in class Enum<AutomatedSql.Operator>


Copyright © 2011 enStratus Networks LLC. All Rights Reserved.