Enum DynamicType
- java.lang.Object
-
- java.lang.Enum<DynamicType>
-
- org.hibernate.search.backend.elasticsearch.lowlevel.index.mapping.impl.DynamicType
-
- All Implemented Interfaces:
Serializable,Comparable<DynamicType>
public enum DynamicType extends Enum<DynamicType>
An enum for Elasticsearch "dynamic" attribute values. See https://www.elastic.co/guide/en/elasticsearch/reference/current/dynamic.html
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DynamicTypecreate(DynamicMapping dynamicMapping)static DynamicTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DynamicType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRUE
@SerializedName("true") public static final DynamicType TRUE
-
FALSE
@SerializedName("false") public static final DynamicType FALSE
-
STRICT
@SerializedName("strict") public static final DynamicType STRICT
-
-
Method Detail
-
values
public static DynamicType[] values()
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 (DynamicType c : DynamicType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DynamicType valueOf(String name)
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
-
create
public static DynamicType create(DynamicMapping dynamicMapping)
-
-