org.openrdf.sail.rdbms.algebra
Enum SqlCompare.Operator
java.lang.Object
java.lang.Enum<SqlCompare.Operator>
org.openrdf.sail.rdbms.algebra.SqlCompare.Operator
- All Implemented Interfaces:
- Serializable, Comparable<SqlCompare.Operator>
- Enclosing class:
- SqlCompare
public static enum SqlCompare.Operator
- extends Enum<SqlCompare.Operator>
GT
public static final SqlCompare.Operator GT
LT
public static final SqlCompare.Operator LT
GE
public static final SqlCompare.Operator GE
LE
public static final SqlCompare.Operator LE
values
public static SqlCompare.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 (SqlCompare.Operator c : SqlCompare.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 SqlCompare.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
Copyright © 2001-2012 Aduna. All Rights Reserved.