public enum Period extends Enum<Period>
Enum Constant and Description |
---|
KLINE_15MIN |
KLINE_1DAY |
KLINE_1MIN |
KLINE_1MON |
KLINE_1WEEK |
KLINE_1YEAR |
KLINE_30MIN |
KLINE_5MIN |
KLINE_60MIN |
KLINE_TIMELINE |
Modifier and Type | Method and Description |
---|---|
static Period |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Period[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Period KLINE_1MIN
public static final Period KLINE_5MIN
public static final Period KLINE_15MIN
public static final Period KLINE_30MIN
public static final Period KLINE_60MIN
public static final Period KLINE_1DAY
public static final Period KLINE_1WEEK
public static final Period KLINE_1MON
public static final Period KLINE_1YEAR
public static final Period KLINE_TIMELINE
public static Period[] values()
for (Period c : Period.values()) System.out.println(c);
public static Period 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 © 2014–2015. All rights reserved.