Enum Property.Kind
- java.lang.Object
-
- java.lang.Enum<Property.Kind>
-
- org.opensearch.client.opensearch._types.mapping.Property.Kind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Property.Kind>,JsonEnum,JsonpSerializable
- Enclosing class:
- Property
public static enum Property.Kind extends java.lang.Enum<Property.Kind> implements JsonEnum
Propertyvariant kinds.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opensearch.client.json.JsonEnum
JsonEnum.Deserializer<T extends JsonEnum>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringjsonValue()static Property.KindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Property.Kind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AggregateMetricDouble
public static final Property.Kind AggregateMetricDouble
-
Binary
public static final Property.Kind Binary
-
Boolean
public static final Property.Kind Boolean
-
Byte
public static final Property.Kind Byte
-
Completion
public static final Property.Kind Completion
-
ConstantKeyword
public static final Property.Kind ConstantKeyword
-
DateNanos
public static final Property.Kind DateNanos
-
Date
public static final Property.Kind Date
-
DateRange
public static final Property.Kind DateRange
-
Double
public static final Property.Kind Double
-
DoubleRange
public static final Property.Kind DoubleRange
-
Alias
public static final Property.Kind Alias
-
Flattened
public static final Property.Kind Flattened
-
Float
public static final Property.Kind Float
-
FloatRange
public static final Property.Kind FloatRange
-
GeoPoint
public static final Property.Kind GeoPoint
-
GeoShape
public static final Property.Kind GeoShape
-
HalfFloat
public static final Property.Kind HalfFloat
-
Histogram
public static final Property.Kind Histogram
-
Integer
public static final Property.Kind Integer
-
IntegerRange
public static final Property.Kind IntegerRange
-
Ip
public static final Property.Kind Ip
-
IpRange
public static final Property.Kind IpRange
-
Join
public static final Property.Kind Join
-
Keyword
public static final Property.Kind Keyword
-
KnnVector
public static final Property.Kind KnnVector
-
Long
public static final Property.Kind Long
-
LongRange
public static final Property.Kind LongRange
-
Murmur3
public static final Property.Kind Murmur3
-
Nested
public static final Property.Kind Nested
-
Object
public static final Property.Kind Object
-
Percolator
public static final Property.Kind Percolator
-
Point
public static final Property.Kind Point
-
RankFeature
public static final Property.Kind RankFeature
-
RankFeatures
public static final Property.Kind RankFeatures
-
ScaledFloat
public static final Property.Kind ScaledFloat
-
SearchAsYouType
public static final Property.Kind SearchAsYouType
-
Shape
public static final Property.Kind Shape
-
Short
public static final Property.Kind Short
-
Text
public static final Property.Kind Text
-
TokenCount
public static final Property.Kind TokenCount
-
UnsignedLong
public static final Property.Kind UnsignedLong
-
Version
public static final Property.Kind Version
-
Wildcard
public static final Property.Kind Wildcard
-
-
Method Detail
-
values
public static Property.Kind[] 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 (Property.Kind c : Property.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Property.Kind valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-