Enum IDfFilterOrderDependency.Dependency
java.lang.Object
java.lang.Enum<IDfFilterOrderDependency.Dependency>
com.documentum.fc.client.search.filter.IDfFilterOrderDependency.Dependency
- All Implemented Interfaces:
Serializable
,Comparable<IDfFilterOrderDependency.Dependency>
,java.lang.constant.Constable
- Enclosing interface:
- IDfFilterOrderDependency
public static enum IDfFilterOrderDependency.Dependency
extends Enum<IDfFilterOrderDependency.Dependency>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicate a filter that potentially changes the target language of the generated query.These filters are called first.Indicate a filter that perform operation dependent on the target language selected.A typical filter is independent of the target language and will not force the target language either. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static IDfFilterOrderDependency.Dependency[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
READ_ONLY
These filters are called first. A typical READ_ONLY filter is used to log user activity, without modifying the search behaviour -
TARGET_LANGUAGE_INDEPENDENT
A typical filter is independent of the target language and will not force the target language either. -
MODIFY_TARGET_LANGUAGE
Indicate a filter that potentially changes the target language of the generated query. For example, a filter that callIDfQueryBuilder.setDatabaseSearchRequested(boolean)
and that depends on the query itself to make this decision. -
TARGET_LANGUAGE_DEPENDENT
Indicate a filter that perform operation dependent on the target language selected.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-