public enum ETransferAmount extends java.lang.Enum<ETransferAmount>
| Enum Constant | 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 | Description |
|---|---|---|
static ETransferAmount |
valueOf(java.lang.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(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 nullCopyright © 2011-2018 Sahits GmbH. All Rights Reserved.