public enum ElementStatus extends Enum<ElementStatus> implements Serializable
| Enum Constant and Description |
|---|
ACTIVE |
APPROVED |
APPROVED_CONCEPT |
APPROVED_FOR_DEPLOYMENT |
COMPLETE |
DEPRECATED |
DEVELOPMENT_COMPLETE |
DISABLED |
DRAFT |
FAILED |
OTHER |
PREPARED |
PROPOSED |
REJECTED |
STANDBY |
UNDER_DEVELOPMENT |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the enum.
|
int |
getOrdinal()
Return the numerical value for the enum.
|
String |
toString()
toString() JSON-style
|
static ElementStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementStatus UNKNOWN
public static final ElementStatus DRAFT
public static final ElementStatus PREPARED
public static final ElementStatus PROPOSED
public static final ElementStatus APPROVED
public static final ElementStatus REJECTED
public static final ElementStatus APPROVED_CONCEPT
public static final ElementStatus UNDER_DEVELOPMENT
public static final ElementStatus DEVELOPMENT_COMPLETE
public static final ElementStatus APPROVED_FOR_DEPLOYMENT
public static final ElementStatus STANDBY
public static final ElementStatus ACTIVE
public static final ElementStatus FAILED
public static final ElementStatus DISABLED
public static final ElementStatus COMPLETE
public static final ElementStatus DEPRECATED
public static final ElementStatus OTHER
public static ElementStatus[] values()
for (ElementStatus c : ElementStatus.values()) System.out.println(c);
public static ElementStatus 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 getOrdinal()
public String getName()
public String getDescription()
public String toString()
toString in class Enum<ElementStatus>Copyright © 2018–2021 LF AI & Data Foundation. All rights reserved.