public static enum IbanFormatException.IbanFormatViolation extends Enum<IbanFormatException.IbanFormatViolation>
| Modifier and Type | Method and Description |
|---|---|
static IbanFormatException.IbanFormatViolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IbanFormatException.IbanFormatViolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IbanFormatException.IbanFormatViolation UNKNOWN
public static final IbanFormatException.IbanFormatViolation IBAN_FORMATTING
public static final IbanFormatException.IbanFormatViolation IBAN_NOT_NULL
public static final IbanFormatException.IbanFormatViolation IBAN_NOT_EMPTY
public static final IbanFormatException.IbanFormatViolation IBAN_VALID_CHARACTERS
public static final IbanFormatException.IbanFormatViolation CHECK_DIGIT_ONLY_DIGITS
public static final IbanFormatException.IbanFormatViolation CHECK_DIGIT_TWO_DIGITS
public static final IbanFormatException.IbanFormatViolation COUNTRY_CODE_TWO_LETTERS
public static final IbanFormatException.IbanFormatViolation COUNTRY_CODE_UPPER_CASE_LETTERS
public static final IbanFormatException.IbanFormatViolation COUNTRY_CODE_EXISTS
public static final IbanFormatException.IbanFormatViolation COUNTRY_CODE_NOT_NULL
public static final IbanFormatException.IbanFormatViolation BBAN_LENGTH
public static final IbanFormatException.IbanFormatViolation BBAN_ONLY_DIGITS
public static final IbanFormatException.IbanFormatViolation BBAN_ONLY_UPPER_CASE_LETTERS
public static final IbanFormatException.IbanFormatViolation BBAN_ONLY_DIGITS_OR_LETTERS
public static final IbanFormatException.IbanFormatViolation BANK_CODE_NOT_NULL
public static final IbanFormatException.IbanFormatViolation ACCOUNT_NUMBER_NOT_NULL
public static IbanFormatException.IbanFormatViolation[] values()
for (IbanFormatException.IbanFormatViolation c : IbanFormatException.IbanFormatViolation.values()) System.out.println(c);
public static IbanFormatException.IbanFormatViolation 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.