クラス VibratoBP

ビブラートのデータポイント


フィールドの概要
 double x
           データ点の X 値
 int y
           データ点の Y 値
 
コンストラクタの概要
static  VibratoBP new()
          初期化を行う
static  VibratoBP new(double x,int y)
          初期化を行う
 
メソッドの概要
static  boolean compare(VibratoBP a,VibratoBP b)
          2 つの VibratoBP を比較する
 int compareTo(VibratoBP item)
          順序を比較する
 
フィールドの詳細

x

public double x
データ点の X 値


y

public int y
データ点の Y 値

コンストラクタの詳細

new

public static VibratoBP new()

初期化を行う

戻り値:

new

public static VibratoBP new(double x,
                            int y)

初期化を行う

パラメータ:
x - x 軸の値
y - y 軸の値
戻り値:
メソッドの詳細

compare

public static boolean compare(VibratoBP a,
                              VibratoBP b)

2 つの VibratoBP を比較する

パラメータ:
a - 比較対象のオブジェクト
b - 比較対象のオブジェクト
戻り値:
ab よりも小さい場合は true、そうでない場合は false を返す

compareTo

public int compareTo(VibratoBP item)

順序を比較する

パラメータ:
item - 比較対象のアイテム
戻り値:
このインスタンスが比較対象よりも小さい場合は負の整数、等しい場合は 0、大きい場合は正の整数を返す