public enum ComponentStatus extends Enum<ComponentStatus>
| Enum Constant and Description |
|---|
ACTIVATED |
REGISTERED |
RESOLVED |
UNREGISTERED |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getDesc() |
static ComponentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentStatus UNREGISTERED
public static final ComponentStatus REGISTERED
public static final ComponentStatus RESOLVED
public static final ComponentStatus ACTIVATED
public static ComponentStatus[] values()
for (ComponentStatus c : ComponentStatus.values()) System.out.println(c);
public static ComponentStatus 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 getCode()
public String getDesc()
Copyright © 2021. All rights reserved.