Package com.documentum.fc.client.search
Interface IDfSearchOperation
public interface IDfSearchOperation
This interface defines the set of operations available for a search
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Search operation: Begins with (7).static final int
Search operation: Between (13).static final int
Search operation: Contains (8).static final int
Search operation: Does not contain (9).static final int
Search operation: Ends with (10).static final int
Search operation: Equal (1).static final int
Search operation: Greater or equal (5).static final int
Search operation: Greater than (3).static final int
Search operation: In (11).static final int
Search operation: Is not null (15).static final int
Search operation: Is null (14).static final int
Search operation: Less or equal (6).static final int
Search operation: Less than (4).static final int
Search operation: Not Equal (2).static final int
Search operation: Not in (12).static final int
Marks the end of the range of valid search operation codes.static final int
Indicates the beginning of the range for valid search operation codes.static final int
Undefined search operation.
-
Field Details
-
SEARCH_OP_UNDEFINED
static final int SEARCH_OP_UNDEFINEDUndefined search operation.- See Also:
-
SEARCH_OP_RANGE_START
static final int SEARCH_OP_RANGE_STARTIndicates the beginning of the range for valid search operation codes.- See Also:
-
SEARCH_OP_EQUAL
static final int SEARCH_OP_EQUALSearch operation: Equal (1).- See Also:
-
SEARCH_OP_NOT_EQUAL
static final int SEARCH_OP_NOT_EQUALSearch operation: Not Equal (2).- See Also:
-
SEARCH_OP_GREATER_THAN
static final int SEARCH_OP_GREATER_THANSearch operation: Greater than (3).- See Also:
-
SEARCH_OP_LESS_THAN
static final int SEARCH_OP_LESS_THANSearch operation: Less than (4).- See Also:
-
SEARCH_OP_GREATER_EQUAL
static final int SEARCH_OP_GREATER_EQUALSearch operation: Greater or equal (5).- See Also:
-
SEARCH_OP_LESS_EQUAL
static final int SEARCH_OP_LESS_EQUALSearch operation: Less or equal (6).- See Also:
-
SEARCH_OP_BEGINS_WITH
static final int SEARCH_OP_BEGINS_WITHSearch operation: Begins with (7).- See Also:
-
SEARCH_OP_CONTAINS
static final int SEARCH_OP_CONTAINSSearch operation: Contains (8).- See Also:
-
SEARCH_OP_DOES_NOT_CONTAIN
static final int SEARCH_OP_DOES_NOT_CONTAINSearch operation: Does not contain (9).- See Also:
-
SEARCH_OP_ENDS_WITH
static final int SEARCH_OP_ENDS_WITHSearch operation: Ends with (10).- See Also:
-
SEARCH_OP_IN
static final int SEARCH_OP_INSearch operation: In (11).- See Also:
-
SEARCH_OP_NOT_IN
static final int SEARCH_OP_NOT_INSearch operation: Not in (12).- See Also:
-
SEARCH_OP_BETWEEN
static final int SEARCH_OP_BETWEENSearch operation: Between (13).- See Also:
-
SEARCH_OP_IS_NULL
static final int SEARCH_OP_IS_NULLSearch operation: Is null (14).- See Also:
-
SEARCH_OP_IS_NOT_NULL
static final int SEARCH_OP_IS_NOT_NULLSearch operation: Is not null (15).- See Also:
-
SEARCH_OP_RANGE_END
static final int SEARCH_OP_RANGE_ENDMarks the end of the range of valid search operation codes.- See Also:
-