public static enum CandlestickFormatter.BodyStyle extends Enum<CandlestickFormatter.BodyStyle>
Enum Constant and Description |
---|
SQUARE |
TRIANGULAR |
Modifier and Type | Method and Description |
---|---|
static CandlestickFormatter.BodyStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CandlestickFormatter.BodyStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CandlestickFormatter.BodyStyle SQUARE
public static final CandlestickFormatter.BodyStyle TRIANGULAR
public static CandlestickFormatter.BodyStyle[] values()
for (CandlestickFormatter.BodyStyle c : CandlestickFormatter.BodyStyle.values()) System.out.println(c);
public static CandlestickFormatter.BodyStyle 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 null