public static enum IndicatorBuilder.DataSource extends Enum<IndicatorBuilder.DataSource>
Enum Constant and Description |
---|
CLOSE
Indica que o valor do fechamento será utilizado.
|
HIGH
Indica que o valor da máxima será utilizado.
|
LOW
Indica que o valor da mínima será utilizado.
|
OPEN
Indica que o valor de abertura será utilizado.
|
Modifier and Type | Method and Description |
---|---|
static IndicatorBuilder.DataSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndicatorBuilder.DataSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndicatorBuilder.DataSource OPEN
public static final IndicatorBuilder.DataSource HIGH
public static final IndicatorBuilder.DataSource LOW
public static final IndicatorBuilder.DataSource CLOSE
public static IndicatorBuilder.DataSource[] values()
for (IndicatorBuilder.DataSource c : IndicatorBuilder.DataSource.values()) System.out.println(c);
public static IndicatorBuilder.DataSource 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