org.encog.ml.data.market
public enum MarketDataType extends Enum<MarketDataType>
Enum Constant and Description |
---|
ADJUSTED_CLOSE
The adjusted close.
|
CLOSE
The market close for the day.
|
HIGH
The high for the day.
|
LOW
The low for the day.
|
OPEN
The market open for the day.
|
VOLUME
The volume for the day.
|
Modifier and Type | Method and Description |
---|---|
static MarketDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarketDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarketDataType OPEN
public static final MarketDataType CLOSE
public static final MarketDataType VOLUME
public static final MarketDataType ADJUSTED_CLOSE
public static final MarketDataType HIGH
public static final MarketDataType LOW
public static MarketDataType[] values()
for (MarketDataType c : MarketDataType.values()) System.out.println(c);
public static MarketDataType 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. All Rights Reserved.