net.sf.dynamicreports.adhoc.configuration
Enum AdhocValueOperator

java.lang.Object
  extended by java.lang.Enum<AdhocValueOperator>
      extended by net.sf.dynamicreports.adhoc.configuration.AdhocValueOperator
All Implemented Interfaces:
Serializable, Comparable<AdhocValueOperator>

public enum AdhocValueOperator
extends Enum<AdhocValueOperator>

Author:
Ricardo Mariaca (dynamicreports@gmail.com)

Enum Constant Summary
BETWEEN
           
END_WITH
           
EQUAL
           
GREATER
           
GREATER_OR_EQUAL
           
IN
           
IS_NOT_NULL
           
IS_NULL
           
LIKE
           
NOT_BETWEEN
           
NOT_END_WITH
           
NOT_IN
           
NOT_LIKE
           
NOT_START_WITH
           
SMALLER
           
SMALLER_OR_EQUAL
           
START_WITH
           
UNEQUAL
           
 
Method Summary
static AdhocValueOperator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AdhocValueOperator[] 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

EQUAL

public static final AdhocValueOperator EQUAL

UNEQUAL

public static final AdhocValueOperator UNEQUAL

IN

public static final AdhocValueOperator IN

NOT_IN

public static final AdhocValueOperator NOT_IN

LIKE

public static final AdhocValueOperator LIKE

NOT_LIKE

public static final AdhocValueOperator NOT_LIKE

START_WITH

public static final AdhocValueOperator START_WITH

NOT_START_WITH

public static final AdhocValueOperator NOT_START_WITH

END_WITH

public static final AdhocValueOperator END_WITH

NOT_END_WITH

public static final AdhocValueOperator NOT_END_WITH

GREATER

public static final AdhocValueOperator GREATER

GREATER_OR_EQUAL

public static final AdhocValueOperator GREATER_OR_EQUAL

SMALLER

public static final AdhocValueOperator SMALLER

SMALLER_OR_EQUAL

public static final AdhocValueOperator SMALLER_OR_EQUAL

BETWEEN

public static final AdhocValueOperator BETWEEN

NOT_BETWEEN

public static final AdhocValueOperator NOT_BETWEEN

IS_NOT_NULL

public static final AdhocValueOperator IS_NOT_NULL

IS_NULL

public static final AdhocValueOperator IS_NULL
Method Detail

values

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

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

valueOf

public static AdhocValueOperator 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 © 2010-2012. All Rights Reserved.