|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QueryOperator>
com.ibm.wbiserver.brules.mgmt.query.QueryOperator
public enum QueryOperator
An enum used to identify the query operator to be used for a particular query.
Enum Constant Summary | |
---|---|
EQUAL
Indicates that the value of a property must match the specified string exactly. |
|
LIKE
Indicates that the query should look for business rule groups where a property value is like the specified string. |
|
NOT_EQUAL
Indicates that the value of a property must not match the specified string. |
|
NOT_LIKE
Indicates that the query should look for business rule groups where a property value is not like the specified string. |
Field Summary | |
---|---|
static java.lang.String |
COPYRIGHT
|
Method Summary | |
---|---|
static QueryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QueryOperator[] |
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 QueryOperator EQUAL
public static final QueryOperator NOT_EQUAL
public static final QueryOperator LIKE
public static final QueryOperator NOT_LIKE
Field Detail |
---|
public static final java.lang.String COPYRIGHT
Method Detail |
---|
public static QueryOperator[] values()
for (QueryOperator c : QueryOperator.values()) System.out.println(c);
public static QueryOperator 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 null
|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |