|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IIndicators.MaType>
com.dukascopy.api.IIndicators.MaType
public static enum IIndicators.MaType
Types of Moving Average
Enum Constant Summary | |
---|---|
DEMA
Double Exponential Moving Average |
|
EMA
Exponential Moving Average |
|
KAMA
Kaufman Adaptive Moving Average |
|
MAMA
MESA Adaptive Moving Average |
|
SMA
Simple Moving Average |
|
T3
T3 Moving Average |
|
TEMA
Triple Exponential Moving Average |
|
TRIMA
Triangular Moving Average |
|
WMA
Weighted Moving Average |
Method Summary | |
---|---|
static IIndicators.MaType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IIndicators.MaType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IIndicators.MaType SMA
public static final IIndicators.MaType EMA
public static final IIndicators.MaType WMA
public static final IIndicators.MaType DEMA
public static final IIndicators.MaType TEMA
public static final IIndicators.MaType TRIMA
public static final IIndicators.MaType KAMA
public static final IIndicators.MaType MAMA
public static final IIndicators.MaType T3
Method Detail |
---|
public static IIndicators.MaType[] values()
for (IIndicators.MaType c : IIndicators.MaType.values()) System.out.println(c);
public static IIndicators.MaType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |