net.sf.dynamicreports.adhoc.xmlconfiguration
Enum XmlAdhocValueOperator

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

public enum XmlAdhocValueOperator
extends Enum<XmlAdhocValueOperator>

Java class for ValueOperator.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="ValueOperator">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="EQUAL"/>
     <enumeration value="UNEQUAL"/>
     <enumeration value="IN"/>
     <enumeration value="NOT_IN"/>
     <enumeration value="LIKE"/>
     <enumeration value="NOT_LIKE"/>
     <enumeration value="START_WITH"/>
     <enumeration value="NOT_START_WITH"/>
     <enumeration value="END_WITH"/>
     <enumeration value="NOT_END_WITH"/>
     <enumeration value="GREATER"/>
     <enumeration value="GREATER_OR_EQUAL"/>
     <enumeration value="SMALLER"/>
     <enumeration value="SMALLER_OR_EQUAL"/>
     <enumeration value="BETWEEN"/>
     <enumeration value="NOT_BETWEEN"/>
     <enumeration value="IS_NOT_NULL"/>
     <enumeration value="IS_NULL"/>
   </restriction>
 </simpleType>
 


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 XmlAdhocValueOperator fromValue(String v)
           
 String value()
           
static XmlAdhocValueOperator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XmlAdhocValueOperator[] 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 XmlAdhocValueOperator EQUAL

UNEQUAL

public static final XmlAdhocValueOperator UNEQUAL

IN

public static final XmlAdhocValueOperator IN

NOT_IN

public static final XmlAdhocValueOperator NOT_IN

LIKE

public static final XmlAdhocValueOperator LIKE

NOT_LIKE

public static final XmlAdhocValueOperator NOT_LIKE

START_WITH

public static final XmlAdhocValueOperator START_WITH

NOT_START_WITH

public static final XmlAdhocValueOperator NOT_START_WITH

END_WITH

public static final XmlAdhocValueOperator END_WITH

NOT_END_WITH

public static final XmlAdhocValueOperator NOT_END_WITH

GREATER

public static final XmlAdhocValueOperator GREATER

GREATER_OR_EQUAL

public static final XmlAdhocValueOperator GREATER_OR_EQUAL

SMALLER

public static final XmlAdhocValueOperator SMALLER

SMALLER_OR_EQUAL

public static final XmlAdhocValueOperator SMALLER_OR_EQUAL

BETWEEN

public static final XmlAdhocValueOperator BETWEEN

NOT_BETWEEN

public static final XmlAdhocValueOperator NOT_BETWEEN

IS_NOT_NULL

public static final XmlAdhocValueOperator IS_NOT_NULL

IS_NULL

public static final XmlAdhocValueOperator IS_NULL
Method Detail

values

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

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

valueOf

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

value

public String value()

fromValue

public static XmlAdhocValueOperator fromValue(String v)


Copyright © 2010-2013. All Rights Reserved.