Enum ObjectFieldStorage
- java.lang.Object
-
- java.lang.Enum<ObjectFieldStorage>
-
- org.hibernate.search.engine.backend.document.model.dsl.ObjectFieldStorage
-
- All Implemented Interfaces:
Serializable,Comparable<ObjectFieldStorage>
@Deprecated public enum ObjectFieldStorage extends Enum<ObjectFieldStorage>
Deprecated.UseObjectStructureinstead.Defines how the structure of an object field is preserved upon indexing.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ObjectFieldStoragevalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static ObjectFieldStorage[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
@Deprecated public static final ObjectFieldStorage DEFAULT
Deprecated.- See Also:
ObjectStructure.DEFAULT
-
FLATTENED
@Deprecated public static final ObjectFieldStorage FLATTENED
Deprecated.- See Also:
ObjectStructure.FLATTENED
-
NESTED
@Deprecated public static final ObjectFieldStorage NESTED
Deprecated.- See Also:
ObjectStructure.NESTED
-
-
Method Detail
-
values
public static ObjectFieldStorage[] 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 (ObjectFieldStorage c : ObjectFieldStorage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ObjectFieldStorage 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
-
-