Package org.hibernate.search.query
Enum ObjectLookupMethod
- java.lang.Object
-
- java.lang.Enum<ObjectLookupMethod>
-
- org.hibernate.search.query.ObjectLookupMethod
-
- All Implemented Interfaces:
Serializable,Comparable<ObjectLookupMethod>
@Deprecated public enum ObjectLookupMethod extends Enum<ObjectLookupMethod>
Deprecated.Instead of using Hibernate Search 5 APIs, get aorg.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.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 Constants Enum Constant Description PERSISTENCE_CONTEXTDeprecated.Check whether an object is already in the persistence context before initializing itSECOND_LEVEL_CACHEDeprecated.Check whether an object is already either in the persistence context or in the second level cache before loading it.SKIPDeprecated.Skip checking (default)
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ObjectLookupMethodvalueOf(String name)Deprecated.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 Detail
-
SKIP
public static final ObjectLookupMethod SKIP
Deprecated.Skip checking (default)
-
PERSISTENCE_CONTEXT
public static final ObjectLookupMethod PERSISTENCE_CONTEXT
Deprecated.Check whether an object is already in the persistence context before initializing it
-
SECOND_LEVEL_CACHE
public static final ObjectLookupMethod 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 Detail
-
values
public static ObjectLookupMethod[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ObjectLookupMethod c : ObjectLookupMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObjectLookupMethod valueOf(String name)
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
-
-