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 intSearch 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.intGets the code of the search operation.intGets the data type of the value.booleanIndicates whether the search operation is case sensitive.booleanIndicates 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
IDfAttrExpressionandIDfSimpleAttrExpression). - 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:
trueif the search operation is case sensitive;falseotherwise.
-
isRepeated
boolean isRepeated()Indicates whether the attribute is repeated.- Returns:
trueif the attribute is repeated;falseotherwise.
-