public enum RecurringIndicator extends Enum<RecurringIndicator>
| Enum Constant and Description |
|---|
CUSTOMER_INITIATED_RECURRING_TRANSACTION |
INITIAL_RECURRING_TRANSACTION |
MERCHANT_INITIATED_RECURRING_TRANSACTION |
REGULAR_TRANSACTION |
| Modifier and Type | Method and Description |
|---|---|
static RecurringIndicator |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static RecurringIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecurringIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecurringIndicator REGULAR_TRANSACTION
public static final RecurringIndicator INITIAL_RECURRING_TRANSACTION
public static final RecurringIndicator MERCHANT_INITIATED_RECURRING_TRANSACTION
public static final RecurringIndicator CUSTOMER_INITIATED_RECURRING_TRANSACTION
public static RecurringIndicator[] values()
for (RecurringIndicator c : RecurringIndicator.values()) System.out.println(c);
public static RecurringIndicator 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 getValue()
public String toString()
toString in class Enum<RecurringIndicator>public static RecurringIndicator fromValue(String text)
Copyright © 2024. All rights reserved.