Enum IDfFtConfig.FtCapability
- All Implemented Interfaces:
Serializable
,Comparable<IDfFtConfig.FtCapability>
,java.lang.constant.Constable
- Enclosing interface:
- IDfFtConfig
Represents the capabilities that can be passed to isCapabilitySupported()
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionwhether the fulltext engine supports evaluating folder hierarchieswhether the fulltext engine supports returning total hit information before returning resultswhether the fulltext engine supports scoring of resultswhether xml element data can be searched (similar to VQL IN operator usage)whether VQL syntax is supported for backward compatibilitywhether security is evaluated in the fulltext enginewhether xquery language is supported by the fulltext engine -
Method Summary
Modifier and TypeMethodDescriptionstatic IDfFtConfig.FtCapability
Returns the enum constant of this type with the specified name.static IDfFtConfig.FtCapability[]
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
-
XQUERY
whether xquery language is supported by the fulltext engine -
SEARCH_TOPIC_CLAUSE
whether VQL syntax is supported for backward compatibility -
HIT_COUNT
whether the fulltext engine supports returning total hit information before returning results -
SECURITY_EVAL_IN_FULLTEXT
whether security is evaluated in the fulltext engine -
RELEVANCE_RANKING
whether the fulltext engine supports scoring of results -
SCOPE_SEARCH
whether xml element data can be searched (similar to VQL IN operator usage) -
FOLDER_EXPANSION
whether the fulltext engine supports evaluating folder hierarchies
-
-
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
-