public enum SubStatus extends Enum<SubStatus>
Modifier and Type | Class and Description |
---|---|
static class |
SubStatus.Adapter |
Enum Constant and Description |
---|
CONFIGURING |
RESTARTING |
Modifier and Type | Method and Description |
---|---|
static SubStatus |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static SubStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubStatus CONFIGURING
public static final SubStatus RESTARTING
public static SubStatus[] values()
for (SubStatus c : SubStatus.values()) System.out.println(c);
public static SubStatus 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 String getValue()
Copyright © 2021. All rights reserved.