public enum AutomaticTuningMode extends Enum<AutomaticTuningMode>
Enum Constant and Description |
---|
AUTO
Enum value Auto.
|
CUSTOM
Enum value Custom.
|
INHERIT
Enum value Inherit.
|
UNSPECIFIED
Enum value Unspecified.
|
Modifier and Type | Method and Description |
---|---|
static AutomaticTuningMode |
fromString(String value)
Parses a serialized value to a AutomaticTuningMode instance.
|
String |
toString() |
static AutomaticTuningMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutomaticTuningMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutomaticTuningMode INHERIT
public static final AutomaticTuningMode CUSTOM
public static final AutomaticTuningMode AUTO
public static final AutomaticTuningMode UNSPECIFIED
public static AutomaticTuningMode[] values()
for (AutomaticTuningMode c : AutomaticTuningMode.values()) System.out.println(c);
public static AutomaticTuningMode 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 static AutomaticTuningMode fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<AutomaticTuningMode>
Copyright © 2019. All rights reserved.