org.apache.beehive.netui.databinding.datagrid.api.filter
Enum FilterOperationHint

Object
  extended by Enum<FilterOperationHint>
      extended by FilterOperationHint
All Implemented Interfaces:
Serializable, Comparable<FilterOperationHint>

public enum FilterOperationHint
extends Enum<FilterOperationHint>


Enum Constant Summary
CONTAINS
           
EQUAL
           
GREATER_THAN
           
GREATER_THAN_OR_EQUAL
           
IS_EMPTY
           
IS_NOT_EMPTY
           
IS_ONE_OF
           
LESS_THAN
           
LESS_THAN_OR_EQUAL
           
NONE
           
NOT_EQUAL
           
STARTS_WITH
           
 
Method Summary
static FilterOperationHint valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FilterOperationHint[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final FilterOperationHint NONE

EQUAL

public static final FilterOperationHint EQUAL

NOT_EQUAL

public static final FilterOperationHint NOT_EQUAL

GREATER_THAN

public static final FilterOperationHint GREATER_THAN

LESS_THAN

public static final FilterOperationHint LESS_THAN

GREATER_THAN_OR_EQUAL

public static final FilterOperationHint GREATER_THAN_OR_EQUAL

LESS_THAN_OR_EQUAL

public static final FilterOperationHint LESS_THAN_OR_EQUAL

IS_ONE_OF

public static final FilterOperationHint IS_ONE_OF

STARTS_WITH

public static final FilterOperationHint STARTS_WITH

CONTAINS

public static final FilterOperationHint CONTAINS

IS_EMPTY

public static final FilterOperationHint IS_EMPTY

IS_NOT_EMPTY

public static final FilterOperationHint IS_NOT_EMPTY
Method Detail

values

public static final FilterOperationHint[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(FilterOperationHint c : FilterOperationHint.values())
        System.out.println(c);

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

valueOf

public static FilterOperationHint 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