public enum CandleSignalType extends Enum<CandleSignalType>
Enum Constant and Description |
---|
BEARISH
Bearish pattern
|
BULLISH
Bullish pattern
|
NOT_APPLICABLE
Unsure about the pattern or pattern type cannot be applied.
|
Modifier and Type | Method and Description |
---|---|
static CandleSignalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CandleSignalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CandleSignalType BULLISH
public static final CandleSignalType BEARISH
public static final CandleSignalType NOT_APPLICABLE
public static CandleSignalType[] values()
for (CandleSignalType c : CandleSignalType.values()) System.out.println(c);
public static CandleSignalType 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 nullCopyright © 2018 KNC Solutions Private Limited.. All rights reserved.