jp.sourceforge.orangesignal.ta
列挙型 MovingAverage

java.lang.Object
  上位を拡張 java.lang.Enum<MovingAverage>
      上位を拡張 jp.sourceforge.orangesignal.ta.MovingAverage
すべての実装されたインタフェース:
Serializable, Comparable<MovingAverage>

public enum MovingAverage
extends 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
 

列挙型定数の詳細

SMA

public static final MovingAverage SMA
単純移動平均 (Simple Moving Average)


SMMA

public static final MovingAverage SMMA
平滑移動平均 (Smoothed Moving Average)


GMA

public static final MovingAverage GMA
幾何学移動平均 (Geometric Moving Average)


RMA

public static final MovingAverage RMA
修正移動平均 (Running Moving Average)


WWMA

public static final MovingAverage WWMA
ワイルダー移動平均 (Welles Wilder's Moving Average)


WMA

public static final MovingAverage WMA
加重移動平均 (Weighted Moving Average)


HMA

public static final MovingAverage HMA
ハル移動平均 (Hull's Moving Average)


TMA

public static final MovingAverage TMA
三角移動平均 (Triangular Moving Average)


EMA

public static final MovingAverage EMA
指数平滑移動平均 (Exponential Moving Average)


DEMA

public static final MovingAverage DEMA
二重指数平滑移動平均 (Double Exponential Moving Average)


TEMA

public static final MovingAverage TEMA
三重指数平滑移動平均 (Triple Exponential Moving Average)


ZLEMA

public static final MovingAverage ZLEMA
零ラグ指数平滑移動平均 (Zero Lag Exponential Moving Average)


EPMA

public static final MovingAverage EPMA
エンドポイント移動平均 (Endpoint Moving Average)


T3

public static final MovingAverage T3
ティルソン T3 移動平均 (Tillson's T3 Moving Average)

メソッドの詳細

values

public static MovingAverage[] values()
この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために使用できます:
for (MovingAverage c : MovingAverage.values())
    System.out.println(c);

戻り値:
この列挙型の定数を宣言されている順序で含む配列

valueOf

public static MovingAverage valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と厳密に 一致している必要があります (余分な空白文字を含めることはできません)。

パラメータ:
name - 返される列挙型定数の名前
戻り値:
指定された名前を持つ列挙型定数
例外:
IllegalArgumentException - 指定された名前を持つ定数を この列挙型が持っていない場合
NullPointerException - 引数が null の場合


Copyright © 2006-2009 OrangeSignal.com. All Rights Reserved.