org.deegree.filter.comparison
Enum ComparisonOperator.SubType

java.lang.Object
  extended by java.lang.Enum<ComparisonOperator.SubType>
      extended by org.deegree.filter.comparison.ComparisonOperator.SubType
All Implemented Interfaces:
Serializable, Comparable<ComparisonOperator.SubType>
Enclosing class:
ComparisonOperator

public static enum ComparisonOperator.SubType
extends Enum<ComparisonOperator.SubType>


Enum Constant Summary
PROPERTY_IS_BETWEEN
           
PROPERTY_IS_EQUAL_TO
           
PROPERTY_IS_GREATER_THAN
           
PROPERTY_IS_GREATER_THAN_OR_EQUAL_TO
           
PROPERTY_IS_LESS_THAN
           
PROPERTY_IS_LESS_THAN_OR_EQUAL_TO
           
PROPERTY_IS_LIKE
           
PROPERTY_IS_NIL
           
PROPERTY_IS_NOT_EQUAL_TO
           
PROPERTY_IS_NULL
           
 
Method Summary
static ComparisonOperator.SubType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ComparisonOperator.SubType[] 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

PROPERTY_IS_EQUAL_TO

public static final ComparisonOperator.SubType PROPERTY_IS_EQUAL_TO

PROPERTY_IS_NOT_EQUAL_TO

public static final ComparisonOperator.SubType PROPERTY_IS_NOT_EQUAL_TO

PROPERTY_IS_LESS_THAN

public static final ComparisonOperator.SubType PROPERTY_IS_LESS_THAN

PROPERTY_IS_GREATER_THAN

public static final ComparisonOperator.SubType PROPERTY_IS_GREATER_THAN

PROPERTY_IS_LESS_THAN_OR_EQUAL_TO

public static final ComparisonOperator.SubType PROPERTY_IS_LESS_THAN_OR_EQUAL_TO

PROPERTY_IS_GREATER_THAN_OR_EQUAL_TO

public static final ComparisonOperator.SubType PROPERTY_IS_GREATER_THAN_OR_EQUAL_TO

PROPERTY_IS_LIKE

public static final ComparisonOperator.SubType PROPERTY_IS_LIKE

PROPERTY_IS_NULL

public static final ComparisonOperator.SubType PROPERTY_IS_NULL

PROPERTY_IS_NIL

public static final ComparisonOperator.SubType PROPERTY_IS_NIL

PROPERTY_IS_BETWEEN

public static final ComparisonOperator.SubType PROPERTY_IS_BETWEEN
Method Detail

values

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

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

valueOf

public static ComparisonOperator.SubType 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 © 2011. All Rights Reserved.