public static enum Transfer.FromEnum extends Enum<Transfer.FromEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
Transfer.FromEnum.Adapter |
| Enum Constant and Description |
|---|
CROSS_MARGIN |
DELIVERY |
FUTURES |
MARGIN |
SPOT |
| Modifier and Type | Method and Description |
|---|---|
static Transfer.FromEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static Transfer.FromEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transfer.FromEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transfer.FromEnum SPOT
public static final Transfer.FromEnum MARGIN
public static final Transfer.FromEnum FUTURES
public static final Transfer.FromEnum DELIVERY
public static final Transfer.FromEnum CROSS_MARGIN
public static Transfer.FromEnum[] values()
for (Transfer.FromEnum c : Transfer.FromEnum.values()) System.out.println(c);
public static Transfer.FromEnum 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 getValue()
public String toString()
toString in class Enum<Transfer.FromEnum>public static Transfer.FromEnum fromValue(String value)
Copyright © 2021. All rights reserved.