public enum ETransferAmount extends Enum<ETransferAmount>
| Enum Constant and Description |
|---|
FIVE
Transfer 5 items at the time
|
MAX
Transfer all items at the time
|
ONE
Tranfer one item at the time
|
| Modifier and Type | Method and Description |
|---|---|
static ETransferAmount |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETransferAmount[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETransferAmount ONE
public static final ETransferAmount FIVE
public static final ETransferAmount MAX
public static ETransferAmount[] values()
for (ETransferAmount c : ETransferAmount.values()) System.out.println(c);
public static ETransferAmount 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 © 2011-2015 Sahits GmbH. All Rights Reserved.