java.io.Serializable, java.lang.Comparable<IBarSeries.BarWidthStyle>public static enum IBarSeries.BarWidthStyle extends java.lang.Enum<IBarSeries.BarWidthStyle>
| Enum Constant | Description |
|---|---|
FIXED |
the style fixing the bar width regardless of interval of bars.
|
STRETCHED |
the style stretching the bar width depending on interval of bars.
|
| Modifier and Type | Method | Description |
|---|---|---|
static IBarSeries.BarWidthStyle |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static IBarSeries.BarWidthStyle[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IBarSeries.BarWidthStyle STRETCHED
public static final IBarSeries.BarWidthStyle FIXED
public static IBarSeries.BarWidthStyle[] values()
for (IBarSeries.BarWidthStyle c : IBarSeries.BarWidthStyle.values()) System.out.println(c);
public static IBarSeries.BarWidthStyle 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 null