public static enum Constants.FeePayer extends Enum<Constants.FeePayer>
| Enum Constant and Description |
|---|
payee |
payee_from_app |
payer |
payer_from_app |
| Modifier and Type | Method and Description |
|---|---|
static Constants.FeePayer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.FeePayer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.FeePayer payer
public static final Constants.FeePayer payee
public static final Constants.FeePayer payer_from_app
public static final Constants.FeePayer payee_from_app
public static Constants.FeePayer[] values()
for (Constants.FeePayer c : Constants.FeePayer.values()) System.out.println(c);
public static Constants.FeePayer 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 © 2014. All Rights Reserved.