public enum PaymentMethod extends Enum<PaymentMethod> implements EnumValue
Enum Constant and Description |
---|
ACH_CREDIT |
ACH_DEBIT |
BPAY |
CHEQUE |
CLEARSTREAM |
CREDIT_CARD |
CREST |
DEBIT_CARD |
DIRECT_CREDIT_BECS |
DIRECT_DEBIT_BECS |
EUROCLEAR |
FED_WIRE |
HIGH_VALUE_CLEARING_SYSTEMS |
NSCC |
TELEGRAPHIC_TRANSFER |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(byte[] val) |
boolean |
equals(byte[] val,
int offset,
int length) |
byte[] |
getValue() |
static PaymentMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMethod CREST
public static final PaymentMethod NSCC
public static final PaymentMethod EUROCLEAR
public static final PaymentMethod CLEARSTREAM
public static final PaymentMethod CHEQUE
public static final PaymentMethod TELEGRAPHIC_TRANSFER
public static final PaymentMethod FED_WIRE
public static final PaymentMethod DEBIT_CARD
public static final PaymentMethod DIRECT_DEBIT_BECS
public static final PaymentMethod DIRECT_CREDIT_BECS
public static final PaymentMethod CREDIT_CARD
public static final PaymentMethod ACH_DEBIT
public static final PaymentMethod ACH_CREDIT
public static final PaymentMethod BPAY
public static final PaymentMethod HIGH_VALUE_CLEARING_SYSTEMS
public static PaymentMethod[] values()
for (PaymentMethod c : PaymentMethod.values()) System.out.println(c);
public static PaymentMethod 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 boolean equals(byte[] val, int offset, int length)
Copyright © 2000–2022 EPAM Systems. All rights reserved.