Enum UserAgentProperty
- java.lang.Object
-
- java.lang.Enum<UserAgentProperty>
-
- org.opensearch.client.opensearch.ingest.UserAgentProperty
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UserAgentProperty>,JsonEnum,JsonpSerializable
@JsonpDeserializable public enum UserAgentProperty extends java.lang.Enum<UserAgentProperty> implements JsonEnum
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opensearch.client.json.JsonEnum
JsonEnum.Deserializer<T extends JsonEnum>
-
-
Field Summary
Fields Modifier and Type Field Description static JsonEnum.Deserializer<UserAgentProperty>_DESERIALIZER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringjsonValue()static UserAgentPropertyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UserAgentProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Name
public static final UserAgentProperty Name
-
Major
public static final UserAgentProperty Major
-
Minor
public static final UserAgentProperty Minor
-
Patch
public static final UserAgentProperty Patch
-
Os
public static final UserAgentProperty Os
-
OsName
public static final UserAgentProperty OsName
-
OsMajor
public static final UserAgentProperty OsMajor
-
OsMinor
public static final UserAgentProperty OsMinor
-
Device
public static final UserAgentProperty Device
-
Build
public static final UserAgentProperty Build
-
-
Field Detail
-
_DESERIALIZER
public static final JsonEnum.Deserializer<UserAgentProperty> _DESERIALIZER
-
-
Method Detail
-
values
public static UserAgentProperty[] 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 (UserAgentProperty c : UserAgentProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserAgentProperty 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
-
-