|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<DataFilterOperator>
com.partnersoft.io.DataFilterOperator
public enum DataFilterOperator
Operand constants for DataRecordFilters.
Copyright 2009 Partner Software
| Enum Constant Summary | |
|---|---|
AND
|
|
EQUALS
|
|
GREATER_THAN
|
|
GREATER_THAN_OR_EQUAL
|
|
LESS_THAN
|
|
LESS_THAN_OR_EQUAL
|
|
LIKE
|
|
NOT_EQUAL
|
|
OR
|
|
| Method Summary | |
|---|---|
abstract java.lang.String |
getStringEquivalent()
Returns a String representation, ie. |
static DataFilterOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DataFilterOperator[] |
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 DataFilterOperator AND
public static final DataFilterOperator OR
public static final DataFilterOperator GREATER_THAN
public static final DataFilterOperator GREATER_THAN_OR_EQUAL
public static final DataFilterOperator LESS_THAN
public static final DataFilterOperator LESS_THAN_OR_EQUAL
public static final DataFilterOperator EQUALS
public static final DataFilterOperator NOT_EQUAL
public static final DataFilterOperator LIKE
| Method Detail |
|---|
public static DataFilterOperator[] values()
for (DataFilterOperator c : DataFilterOperator.values()) System.out.println(c);
public static DataFilterOperator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic abstract java.lang.String getStringEquivalent()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||