Package de.gsi.financial.samples.service
Enum SimpleOhlcvReplayDataSet.DataInput
- java.lang.Object
-
- java.lang.Enum<SimpleOhlcvReplayDataSet.DataInput>
-
- de.gsi.financial.samples.service.SimpleOhlcvReplayDataSet.DataInput
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SimpleOhlcvReplayDataSet.DataInput>
- Enclosing class:
- SimpleOhlcvReplayDataSet
public static enum SimpleOhlcvReplayDataSet.DataInput extends java.lang.Enum<SimpleOhlcvReplayDataSet.DataInput>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OHLC_TICK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimpleOhlcvReplayDataSet.DataInputvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SimpleOhlcvReplayDataSet.DataInput[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OHLC_TICK
public static final SimpleOhlcvReplayDataSet.DataInput OHLC_TICK
-
-
Method Detail
-
values
public static SimpleOhlcvReplayDataSet.DataInput[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SimpleOhlcvReplayDataSet.DataInput c : SimpleOhlcvReplayDataSet.DataInput.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleOhlcvReplayDataSet.DataInput valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-