public static enum Transfer.Type extends Enum<Transfer.Type>
| Modifier and Type | Method and Description |
|---|---|
static Transfer.Type |
create(String val) |
String |
toString() |
static Transfer.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transfer.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transfer.Type SELL
public static final Transfer.Type BUY
public static Transfer.Type[] values()
for (Transfer.Type c : Transfer.Type.values()) System.out.println(c);
public static Transfer.Type 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 toString()
toString in class Enum<Transfer.Type>public static Transfer.Type create(String val)
Copyright © 2014. All rights reserved.