|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド |
java.lang.Objectjava.lang.Enum<MovingAverage>
jp.sf.orangesignal.ta.MovingAverage
public enum MovingAverage
移動平均の種類を表す列挙型を提供します。
この列挙型では単一データでの移動平均のみ提供します。
列挙型定数の概要 | |
---|---|
DEMA
二重指数平滑移動平均 (Double Exponential Moving Average) |
|
EMA
指数平滑移動平均 (Exponential Moving Average) |
|
EPMA
エンドポイント移動平均 (Endpoint Moving Average) |
|
GMA
幾何学移動平均 (Geometric Moving Average) |
|
HMA
ハル移動平均 (Hull's Moving Average) |
|
RMA
修正移動平均 (Running Moving Average) |
|
SMA
単純移動平均 (Simple Moving Average) |
|
SMMA
平滑移動平均 (Smoothed Moving Average) |
|
T3
ティルソン T3 移動平均 (Tillson's T3 Moving Average) |
|
TEMA
三重指数平滑移動平均 (Triple Exponential Moving Average) |
|
TMA
三角移動平均 (Triangular Moving Average) |
|
WMA
加重移動平均 (Weighted Moving Average) |
|
WWMA
ワイルダー移動平均 (Welles Wilder's Moving Average) |
|
ZLEMA
零ラグ指数平滑移動平均 (Zero Lag Exponential Moving Average) |
メソッドの概要 | |
---|---|
static MovingAverage |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。 |
static MovingAverage[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。 |
クラス java.lang.Enum から継承されたメソッド |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
クラス java.lang.Object から継承されたメソッド |
---|
getClass, notify, notifyAll, wait, wait, wait |
列挙型定数の詳細 |
---|
public static final MovingAverage SMA
public static final MovingAverage SMMA
public static final MovingAverage GMA
public static final MovingAverage RMA
public static final MovingAverage WWMA
public static final MovingAverage WMA
public static final MovingAverage HMA
public static final MovingAverage TMA
public static final MovingAverage EMA
public static final MovingAverage DEMA
public static final MovingAverage TEMA
public static final MovingAverage ZLEMA
public static final MovingAverage EPMA
public static final MovingAverage T3
メソッドの詳細 |
---|
public static MovingAverage[] values()
for (MovingAverage c : MovingAverage.values()) System.out.println(c);
public static MovingAverage valueOf(String name)
name
- 返される列挙型定数の名前
IllegalArgumentException
- 指定された名前を持つ定数を
この列挙型が持っていない場合
NullPointerException
- 引数が null の場合
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド |