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