public enum CandlestickInterval extends Enum<CandlestickInterval>
| Enum Constant and Description |
|---|
DAILY |
EIGHT_HOURLY |
FIFTEEN_MINUTES |
FIVE_MINUTES |
FOUR_HOURLY |
HALF_HOURLY |
HOURLY |
MONTHLY |
ONE_MINUTE |
SIX_HOURLY |
THREE_DAILY |
THREE_MINUTES |
TWELVE_HOURLY |
TWO_HOURLY |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static CandlestickInterval |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CandlestickInterval[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CandlestickInterval ONE_MINUTE
public static final CandlestickInterval THREE_MINUTES
public static final CandlestickInterval FIVE_MINUTES
public static final CandlestickInterval FIFTEEN_MINUTES
public static final CandlestickInterval HALF_HOURLY
public static final CandlestickInterval HOURLY
public static final CandlestickInterval TWO_HOURLY
public static final CandlestickInterval FOUR_HOURLY
public static final CandlestickInterval SIX_HOURLY
public static final CandlestickInterval EIGHT_HOURLY
public static final CandlestickInterval TWELVE_HOURLY
public static final CandlestickInterval DAILY
public static final CandlestickInterval THREE_DAILY
public static final CandlestickInterval WEEKLY
public static final CandlestickInterval MONTHLY
public static CandlestickInterval[] values()
for (CandlestickInterval c : CandlestickInterval.values()) System.out.println(c);
public static CandlestickInterval 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<CandlestickInterval>Copyright © 2021. All rights reserved.