public static enum Enums.BarSizeType extends java.lang.Enum<Enums.BarSizeType>
Enum Constant and Description |
---|
BID_ASK
Bid/Ask Lines.
|
CONSTANT_VOLUME
Each bar has a set associated volume.
|
HYBRID_RENKO
Hybrid version of Japanese Renko (Brick) bars.
|
LINEAR
Linear bars (in number of minutes).
|
POINT_AND_FIGURE
Point and Figure Bars.
|
RANGE
Base on price range.
|
RENKO
Japanese Renko (Brick) bars.
|
TICK
Based on the number of ticks per bar.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Enums.BarSizeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.BarSizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.BarSizeType LINEAR
public static final Enums.BarSizeType BID_ASK
public static final Enums.BarSizeType TICK
public static final Enums.BarSizeType CONSTANT_VOLUME
public static final Enums.BarSizeType RANGE
public static final Enums.BarSizeType RENKO
public static final Enums.BarSizeType HYBRID_RENKO
public static final Enums.BarSizeType POINT_AND_FIGURE
public static Enums.BarSizeType[] values()
for (Enums.BarSizeType c : Enums.BarSizeType.values()) System.out.println(c);
public static Enums.BarSizeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Enums.BarSizeType>