public static enum Enums.MAMethod extends java.lang.Enum<Enums.MAMethod>
Enum Constant and Description |
---|
DEMA
Double Exponential Moving Average.
|
EMA
Exponential Moving Average.
|
KAMA
Kauffman Adaptive Moving Average.
|
MEMA
Modified Exponential Moving Average.
|
SMA
Simple Moving Average.
|
SMMA
Smoothed Moving Average.
|
TEMA
Triple Exponential Moving Average.
|
TMA
Triangular Moving Average.
|
VWMA
Volume Weighted Moving Average.
|
WMA
Weighed Moving Average
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
This method has been overridden to display a user friendly version of
the input type for use in combo boxes etc.
|
static Enums.MAMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.MAMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.MAMethod SMA
public static final Enums.MAMethod EMA
public static final Enums.MAMethod SMMA
public static final Enums.MAMethod MEMA
public static final Enums.MAMethod WMA
public static final Enums.MAMethod KAMA
public static final Enums.MAMethod DEMA
public static final Enums.MAMethod TEMA
public static final Enums.MAMethod TMA
public static final Enums.MAMethod VWMA
public static Enums.MAMethod[] values()
for (Enums.MAMethod c : Enums.MAMethod.values()) System.out.println(c);
public static Enums.MAMethod 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Enums.MAMethod>