public enum EtfStatus extends Enum<EtfStatus>
| Enum Constant and Description |
|---|
CREATION_AND_REDEMPTION_SUSPEND |
CREATION_SUSPEND |
NORMAL |
REBALANCING_START |
REDEMPTION_SUSPEND |
| Modifier and Type | Method and Description |
|---|---|
static EtfStatus |
lookup(String name) |
String |
toString() |
static EtfStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EtfStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EtfStatus NORMAL
public static final EtfStatus REBALANCING_START
public static final EtfStatus CREATION_AND_REDEMPTION_SUSPEND
public static final EtfStatus CREATION_SUSPEND
public static final EtfStatus REDEMPTION_SUSPEND
public static EtfStatus[] values()
for (EtfStatus c : EtfStatus.values()) System.out.println(c);
public static EtfStatus 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 © 2021. All rights reserved.