public enum DeclaredUboStatus extends java.lang.Enum<DeclaredUboStatus>
| Enum Constant and Description |
|---|
CREATED
When declaration of a UBO was created
|
REFUSED
When declaration of a UBO was refused
|
VALIDATED
When declaration of a UBO was validated
|
| Modifier and Type | Method and Description |
|---|---|
static DeclaredUboStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeclaredUboStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeclaredUboStatus CREATED
public static final DeclaredUboStatus VALIDATED
public static final DeclaredUboStatus REFUSED
public static DeclaredUboStatus[] values()
for (DeclaredUboStatus c : DeclaredUboStatus.values()) System.out.println(c);
public static DeclaredUboStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null