public static enum BicFormatException.BicFormatViolation extends Enum<BicFormatException.BicFormatViolation>
| Enum Constant and Description |
|---|
BANK_CODE_ONLY_LETTERS |
BIC_LENGTH_8_OR_11 |
BIC_NOT_EMPTY |
BIC_NOT_NULL |
BIC_ONLY_UPPER_CASE_LETTERS |
BRANCH_CODE_ONLY_LETTERS_OR_DIGITS |
COUNTRY_CODE_ONLY_UPPER_CASE_LETTERS |
LOCATION_CODE_ONLY_LETTERS_OR_DIGITS |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static BicFormatException.BicFormatViolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BicFormatException.BicFormatViolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BicFormatException.BicFormatViolation UNKNOWN
public static final BicFormatException.BicFormatViolation BIC_NOT_NULL
public static final BicFormatException.BicFormatViolation BIC_NOT_EMPTY
public static final BicFormatException.BicFormatViolation BIC_LENGTH_8_OR_11
public static final BicFormatException.BicFormatViolation BIC_ONLY_UPPER_CASE_LETTERS
public static final BicFormatException.BicFormatViolation BRANCH_CODE_ONLY_LETTERS_OR_DIGITS
public static final BicFormatException.BicFormatViolation LOCATION_CODE_ONLY_LETTERS_OR_DIGITS
public static final BicFormatException.BicFormatViolation BANK_CODE_ONLY_LETTERS
public static final BicFormatException.BicFormatViolation COUNTRY_CODE_ONLY_UPPER_CASE_LETTERS
public static BicFormatException.BicFormatViolation[] values()
for (BicFormatException.BicFormatViolation c : BicFormatException.BicFormatViolation.values()) System.out.println(c);
public static BicFormatException.BicFormatViolation 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 nullCopyright © 2020. All rights reserved.