public static enum RedirectFlow.Scheme extends java.lang.Enum<RedirectFlow.Scheme>
Enum Constant and Description |
---|
AUTOGIRO |
BACS |
BECS |
BECS_NZ |
BETALINGSSERVICE |
SEPA_CORE |
Modifier and Type | Method and Description |
---|---|
static RedirectFlow.Scheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RedirectFlow.Scheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="autogiro") public static final RedirectFlow.Scheme AUTOGIRO
@SerializedName(value="bacs") public static final RedirectFlow.Scheme BACS
@SerializedName(value="becs") public static final RedirectFlow.Scheme BECS
@SerializedName(value="becs_nz") public static final RedirectFlow.Scheme BECS_NZ
@SerializedName(value="betalingsservice") public static final RedirectFlow.Scheme BETALINGSSERVICE
@SerializedName(value="sepa_core") public static final RedirectFlow.Scheme SEPA_CORE
public static RedirectFlow.Scheme[] values()
for (RedirectFlow.Scheme c : RedirectFlow.Scheme.values()) System.out.println(c);
public static RedirectFlow.Scheme valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null