public enum IntradayBarField extends Enum<IntradayBarField>
Enum Constant and Description |
---|
CLOSE |
HIGH |
LOW |
NUM_EVENTS |
OPEN |
TIME |
VOLUME |
Modifier and Type | Method and Description |
---|---|
static IntradayBarField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntradayBarField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntradayBarField TIME
public static final IntradayBarField OPEN
public static final IntradayBarField HIGH
public static final IntradayBarField LOW
public static final IntradayBarField CLOSE
public static final IntradayBarField VOLUME
public static final IntradayBarField NUM_EVENTS
public static IntradayBarField[] values()
for (IntradayBarField c : IntradayBarField.values()) System.out.println(c);
public static IntradayBarField 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 © 2013. All Rights Reserved.