Enum Store

java.lang.Object
java.lang.Enum<Store>
org.hibernate.search.annotations.Store
All Implemented Interfaces:
Serializable, Comparable<Store>

@Deprecated public enum Store extends Enum<Store>
Deprecated.
Use Hibernate Search 6's field annotations (GenericField, KeywordField, FullTextField, ...) and enable/disable storage with @GenericField(projectable = Projectable.YES) instead.
Whether or not the value is stored in the document
Author:
Emmanuel Bernard
  • Enum Constant Details

    • NO

      public static final Store NO
      Deprecated.
      does not store the value in the index
    • YES

      public static final Store YES
      Deprecated.
      stores the value in the index
    • COMPRESS

      public static final Store COMPRESS
      Deprecated.
      stores the value in the index in a compressed form
  • Method Details

    • values

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