|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Operation>
com.fatwire.cs.core.search.query.Operation
public enum Operation
Different search Operations that can be performed on a given field.
Enum Constant Summary | |
---|---|
CONTAINS
represents a contains operation on a field |
|
EQUALS
represents an equals operation |
|
PHRASE
represent a phrase operation on a field |
|
RANGE
represents a range operation on a field |
|
RANGE_INCLUSIVE
represents an inclusive (inclusive means the boundries will be included) range operation on the field |
|
SIMILAR
represents a similar condition on a field |
|
STARTS_WITH
represents a start with operation on a field |
|
WILDCARD
represent a wild card conditon on a field |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Operation[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Operation EQUALS
public static final Operation CONTAINS
public static final Operation RANGE
public static final Operation RANGE_INCLUSIVE
public static final Operation STARTS_WITH
public static final Operation PHRASE
public static final Operation WILDCARD
public static final Operation SIMILAR
Method Detail |
---|
public static final Operation[] values()
for(Operation c : Operation.values()) System.out.println(c);
public static Operation 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 namepublic java.lang.String toString()
toString
in class java.lang.Enum<Operation>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |