public enum ElasticMajorVersion extends Enum<ElasticMajorVersion>
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static ElasticMajorVersion |
parse(String value) |
static ElasticMajorVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElasticMajorVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElasticMajorVersion SIX
public static final ElasticMajorVersion SEVEN
public static final ElasticMajorVersion EIGHT
public static ElasticMajorVersion[] values()
for (ElasticMajorVersion c : ElasticMajorVersion.values()) System.out.println(c);
public static ElasticMajorVersion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
public static ElasticMajorVersion parse(String value)
Copyright © 2012–2024. All rights reserved.