public enum UboDeclarationStatus extends java.lang.Enum<UboDeclarationStatus>
| Enum Constant and Description |
|---|
CREATED
When the UBO declaration was created
|
INCOMPLETE
When the UBO declaration was incomplete
|
REFUSED
When the UBO declaration was refused
|
VALIDATED
When the UBO declaration was validated
|
VALIDATION_ASKED
When validation has been requested for the UBO declaration
|
| Modifier and Type | Method and Description |
|---|---|
static UboDeclarationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UboDeclarationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UboDeclarationStatus CREATED
public static final UboDeclarationStatus VALIDATION_ASKED
public static final UboDeclarationStatus VALIDATED
public static final UboDeclarationStatus REFUSED
public static final UboDeclarationStatus INCOMPLETE
public static UboDeclarationStatus[] values()
for (UboDeclarationStatus c : UboDeclarationStatus.values()) System.out.println(c);
public static UboDeclarationStatus 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