schmitzm.geotools.feature
Enum AttributeFilter.CompareType

java.lang.Object
  extended by java.lang.Enum<AttributeFilter.CompareType>
      extended by schmitzm.geotools.feature.AttributeFilter.CompareType
All Implemented Interfaces:
Serializable, Comparable<AttributeFilter.CompareType>
Enclosing class:
AttributeFilter

public static enum AttributeFilter.CompareType
extends Enum<AttributeFilter.CompareType>

Typ der Vergleichsfunktion fuer den Filter.


Enum Constant Summary
EQUALS
          Vergleich auf Gleichheit (Attributwert = Konstante).
GE
          Groesser/Gleich-Vergleich (Attributwert >= Konstante).
GT
          Groesser-Vergleich (Attributwert > Konstante).
LE
          Kleiner/Gleich-Vergleich (Attributwert <= Konstante).
LT
          Kleiner-Vergleich (Attributwert < Konstante).
 
Method Summary
static AttributeFilter.CompareType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AttributeFilter.CompareType[] 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

EQUALS

public static final AttributeFilter.CompareType EQUALS
Vergleich auf Gleichheit (Attributwert = Konstante).


GT

public static final AttributeFilter.CompareType GT
Groesser-Vergleich (Attributwert > Konstante).


GE

public static final AttributeFilter.CompareType GE
Groesser/Gleich-Vergleich (Attributwert >= Konstante).


LT

public static final AttributeFilter.CompareType LT
Kleiner-Vergleich (Attributwert < Konstante).


LE

public static final AttributeFilter.CompareType LE
Kleiner/Gleich-Vergleich (Attributwert <= Konstante).

Method Detail

values

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

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

valueOf

public static AttributeFilter.CompareType 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