public enum UboDeclarationRefusedReasonType extends java.lang.Enum<UboDeclarationRefusedReasonType>
| Enum Constant and Description |
|---|
DECLARATION_DO_NOT_MATCH_UBO_INFORMATION
When at least one natural user should not be declared as UBO
|
INVALID_UBO_DETAILS
When at least one natural user declared as UBO has been created
with wrong details (i.e.
|
MISSING_UBO
When at least one natural user is missing on the declaration
|
| Modifier and Type | Method and Description |
|---|---|
static UboDeclarationRefusedReasonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UboDeclarationRefusedReasonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UboDeclarationRefusedReasonType MISSING_UBO
public static final UboDeclarationRefusedReasonType DECLARATION_DO_NOT_MATCH_UBO_INFORMATION
public static final UboDeclarationRefusedReasonType INVALID_UBO_DETAILS
public static UboDeclarationRefusedReasonType[] values()
for (UboDeclarationRefusedReasonType c : UboDeclarationRefusedReasonType.values()) System.out.println(c);
public static UboDeclarationRefusedReasonType 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