Package com.documentum.fc.client.search
Interface IDfAttrExpression
- All Superinterfaces:
IDfExpression
- All Known Subinterfaces:
IDfRelativeDateExpression
,IDfSimpleAttrExpression
,IDfValueListAttrExpression
,IDfValueRangeAttrExpression
Defines a base interface for the attribute search expression.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Search operation code: no operation defined.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 TypeMethodDescriptionGets the attribute name.Gets the string representation of the search operation.int
Gets the code of the search operation.int
Gets the data type of the value.boolean
Indicates whether the search operation is case sensitive.boolean
Indicates whether the attribute is repeated.Methods inherited from interface com.documentum.fc.client.search.IDfExpression
acceptVisitor, getDateFormat, getExpressionType, setDateFormat
-
Field Details
-
SEARCH_OP_UNDEFINED
static final int SEARCH_OP_UNDEFINEDSearch operation code: no operation defined.- See Also:
-
-
Method Details
-
getAttrName
String getAttrName()Gets the attribute name.- Returns:
- The attribute name.
-
getValueDataType
int getValueDataType()Gets the data type of the value.- Returns:
- The data type of the value (constants defined in
IDfValue
). - See Also:
-
getSearchOperationCode
int getSearchOperationCode()Gets the code of the search operation.- Returns:
- The search operation code (constants defined in
IDfAttrExpression
andIDfSimpleAttrExpression
). - See Also:
-
getSearchOperation
String getSearchOperation()Gets the string representation of the search operation.- Returns:
- The search operation converted to string.
-
isCaseSensitive
boolean isCaseSensitive()Indicates whether the search operation is case sensitive.- Returns:
true
if the search operation is case sensitive;false
otherwise.
-
isRepeated
boolean isRepeated()Indicates whether the attribute is repeated.- Returns:
true
if the attribute is repeated;false
otherwise.
-