Enum Class FulltextSearchBuilder.SearchScope
java.lang.Object
java.lang.Enum<FulltextSearchBuilder.SearchScope>
ch.tocco.nice2.persist.entity.api.fulltext.FulltextSearchBuilder.SearchScope
- All Implemented Interfaces:
Serializable
,Comparable<FulltextSearchBuilder.SearchScope>
,Constable
- Enclosing interface:
FulltextSearchBuilder
public static enum FulltextSearchBuilder.SearchScope
extends Enum<FulltextSearchBuilder.SearchScope>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUses the fulltext search model that is configured in the entity.Uses the relation search model that is configured in the entity.Uses the remote-field search model that is configured in the entity. -
Method Summary
Modifier and TypeMethodDescriptionabstract CommonSearchModel
getSearchModel
(EntityModel eModel) Returns the model that defines how fulltext search is to be done.Returns the enum constant of this class with the specified name.static FulltextSearchBuilder.SearchScope[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FULLTEXT
Uses the fulltext search model that is configured in the entity. -
RELATION
Uses the relation search model that is configured in the entity. -
REMOTEFIELD
Uses the remote-field search model that is configured in the entity.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getSearchModel
Returns the model that defines how fulltext search is to be done.
-