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 a org.hibernate.search.mapper.orm.session.SearchSession using org.hibernate.search.mapper.orm.Search#session(org.hibernate.Session), create a SearchQuery with org.hibernate.search.mapper.orm.session.SearchSession#search(Class), and define your loading options using SearchQueryOptionsStep.loading(Consumer). To set the equivalent to ObjectLookupMethod in Hibernate Search 6, use org.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 Details

    • 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 Details

    • values

      public static ObjectLookupMethod[] 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

      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 name
      NullPointerException - if the argument is null