Package org.hibernate.search.query
Enum ObjectLookupMethod
- All Implemented Interfaces:
Serializable,Comparable<ObjectLookupMethod>
Deprecated.
Define whether or not to check whether objects are already present in the second level cache or the persistence context.
In most cases, no presence check is necessary.
- Author:
- Emmanuel Bernard
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.Check whether an object is already in the persistence context before initializing itDeprecated.Check whether an object is already either in the persistence context or in the second level cache before loading it.Deprecated.Skip checking (default) -
Method Summary
Modifier and TypeMethodDescriptionstatic ObjectLookupMethodDeprecated.Returns the enum constant of this type with the specified name.static ObjectLookupMethod[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SKIP
Deprecated.Skip checking (default) -
PERSISTENCE_CONTEXT
Deprecated.Check whether an object is already in the persistence context before initializing it -
SECOND_LEVEL_CACHE
Deprecated.Check whether an object is already either in the persistence context or in the second level cache before loading it.
-
-
Method Details
-
values
Deprecated.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
Deprecated.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
-
org.hibernate.search.mapper.orm.session.SearchSessionusingorg.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create aSearchQuerywithorg.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your loading options usingSearchQueryOptionsStep.loading(Consumer). To set the equivalent toObjectLookupMethodin Hibernate Search 6, useorg.hibernate.search.mapper.orm.search.loading.dsl.SearchLoadingOptionsStep#cacheLookupStrategy(org.hibernate.search.mapper.orm.search.loading.EntityLoadingCacheLookupStrategy)Refer to the migration guide for more information.