public enum PropertyName extends Enum<PropertyName>
| Enum Constant and Description |
|---|
AMOUNT |
COUNTERPARTY_IBAN |
CREDIT |
CURRENCY |
NAME |
REFERENCE |
| Modifier and Type | Method and Description |
|---|---|
static PropertyName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyName NAME
public static final PropertyName AMOUNT
public static final PropertyName CURRENCY
public static final PropertyName CREDIT
public static final PropertyName COUNTERPARTY_IBAN
public static final PropertyName REFERENCE
public static PropertyName[] values()
for (PropertyName c : PropertyName.values()) System.out.println(c);
public static PropertyName 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 © 2023. All rights reserved.