public enum BuildState extends Enum<BuildState>
Build| Enum Constant and Description |
|---|
FAILED
The failed state
|
STAGED
The staged state
|
STAGING
The staging state
|
| Modifier and Type | Method and Description |
|---|---|
static BuildState |
from(String s) |
String |
getValue() |
String |
toString() |
static BuildState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildState FAILED
public static final BuildState STAGED
public static final BuildState STAGING
public static BuildState[] values()
for (BuildState c : BuildState.values()) System.out.println(c);
public static BuildState 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 BuildState from(String s)
public String getValue()
public String toString()
toString in class Enum<BuildState>Copyright © 2020. All rights reserved.