Package com.documentum.fc.client.search
Interface IDfValueListAttrExpression
- All Superinterfaces:
IDfAttrExpression
,IDfExpression
Defines a search expression that requires the attribute value to be included in a list of values.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Search operation code: included in.static final int
Search operation code: not included in.Fields inherited from interface com.documentum.fc.client.search.IDfAttrExpression
SEARCH_OP_UNDEFINED
Fields inherited from interface com.documentum.fc.client.search.IDfExpression
DATE_FORMAT_DEFAULT, EXPR_TYPE_FULLTEXT, EXPR_TYPE_MLT, EXPR_TYPE_RELATIVE_DATE, EXPR_TYPE_SET, EXPR_TYPE_SIMPLE_ATTR, EXPR_TYPE_UNDEFINED, EXPR_TYPE_VALUE_LIST_ATTR, EXPR_TYPE_VALUE_RANGE_ATTR
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a value to the list.void
addValueList
(IDfList valueList) Adds a set of values to the list.int
Gets the number of possible values.Gets all the possible values.Methods inherited from interface com.documentum.fc.client.search.IDfAttrExpression
getAttrName, getSearchOperation, getSearchOperationCode, getValueDataType, isCaseSensitive, isRepeated
Methods inherited from interface com.documentum.fc.client.search.IDfExpression
acceptVisitor, getDateFormat, getExpressionType, setDateFormat
-
Field Details
-
SEARCH_OP_IN
static final int SEARCH_OP_INSearch operation code: included in.- See Also:
-
SEARCH_OP_NOT_IN
static final int SEARCH_OP_NOT_INSearch operation code: not included in.- See Also:
-
-
Method Details
-
getValueCount
int getValueCount()Gets the number of possible values.- Returns:
- The size of the value list.
-
getValues
IDfEnumeration getValues()Gets all the possible values.- Returns:
- The list of values (IDfEnumeration of String).
-
addValue
Adds a value to the list.- Parameters:
value
- The value to add.
-
addValueList
Adds a set of values to the list.- Parameters:
valueList
- The set of values to add (IDfList of String).
-