Enum Class CachingType

java.lang.Object
java.lang.Enum<CachingType>
org.hibernate.jpa.CachingType
All Implemented Interfaces:
Serializable, Comparable<CachingType>, Constable

public enum CachingType extends Enum<CachingType>
  • Enum Constant Details

    • NONE

      public static final CachingType NONE
      No caching is done
    • DATA

      public static final CachingType DATA
      Caching is done related to entity, collection and natural-id data
    • QUERY

      public static final CachingType QUERY
      Caching is done on the results of Query executions
    • BOTH

      public static final CachingType BOTH
      Both DATA and QUERY are enabled.
    • AUTO

      public static final CachingType AUTO
      Implicit setting. Defaults to NONE
  • Method Details

    • values

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

      public static CachingType valueOf(String name)
      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 name
      NullPointerException - if the argument is null