public enum TradingDateType extends Enum<TradingDateType>
| Enum Constant and Description |
|---|
FULL_DAY
Full day
|
HALF_DAY
Half day
|
| Modifier and Type | Method and Description |
|---|---|
static TradingDateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TradingDateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TradingDateType FULL_DAY
public static final TradingDateType HALF_DAY
public static TradingDateType[] values()
for (TradingDateType c : TradingDateType.values()) System.out.println(c);
public static TradingDateType 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 © 2025 Webull. All rights reserved.