@Deprecated public static enum EuropeBankAccount.MandateType extends Enum<EuropeBankAccount.MandateType>
Enum Constant and Description |
---|
BUSINESS
Deprecated.
|
CONSUMER
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Deprecated.
|
static EuropeBankAccount.MandateType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static EuropeBankAccount.MandateType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EuropeBankAccount.MandateType BUSINESS
public static final EuropeBankAccount.MandateType CONSUMER
private final String name
public static EuropeBankAccount.MandateType[] values()
for (EuropeBankAccount.MandateType c : EuropeBankAccount.MandateType.values()) System.out.println(c);
public static EuropeBankAccount.MandateType 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 nullpublic String toString()
toString
in class Enum<EuropeBankAccount.MandateType>
Copyright © 2013-2020. All Rights Reserved.