|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<XmlAdhocValueOperator>
net.sf.dynamicreports.adhoc.xmlconfiguration.XmlAdhocValueOperator
public 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 |
|---|
public static final XmlAdhocValueOperator EQUAL
public static final XmlAdhocValueOperator UNEQUAL
public static final XmlAdhocValueOperator IN
public static final XmlAdhocValueOperator NOT_IN
public static final XmlAdhocValueOperator LIKE
public static final XmlAdhocValueOperator NOT_LIKE
public static final XmlAdhocValueOperator START_WITH
public static final XmlAdhocValueOperator NOT_START_WITH
public static final XmlAdhocValueOperator END_WITH
public static final XmlAdhocValueOperator NOT_END_WITH
public static final XmlAdhocValueOperator GREATER
public static final XmlAdhocValueOperator GREATER_OR_EQUAL
public static final XmlAdhocValueOperator SMALLER
public static final XmlAdhocValueOperator SMALLER_OR_EQUAL
public static final XmlAdhocValueOperator BETWEEN
public static final XmlAdhocValueOperator NOT_BETWEEN
public static final XmlAdhocValueOperator IS_NOT_NULL
public static final XmlAdhocValueOperator IS_NULL
| Method Detail |
|---|
public static XmlAdhocValueOperator[] values()
for (XmlAdhocValueOperator c : XmlAdhocValueOperator.values()) System.out.println(c);
public static XmlAdhocValueOperator valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String value()
public static XmlAdhocValueOperator fromValue(String v)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||