jp.go.nict.langrid.dao
クラス MatchingCondition

java.lang.Object
  上位を拡張 jp.go.nict.langrid.dao.MatchingCondition
すべての実装されたインタフェース:
Serializable

public class MatchingCondition
extends Object
implements Serializable

検索条件を格納する。

バージョン:
$Revision: 11671 $
作成者:
$Author: Takao Nakaguchi $
関連項目:
直列化された形式

コンストラクタの概要
MatchingCondition()
          コンストラクタ。
MatchingCondition(String fieldName, Object matchingValue)
          コンストラクタ。
MatchingCondition(String fieldName, Object matchingValue, MatchingMethod matchingMethod)
          コンストラクタ。
 
メソッドの概要
 boolean equals(Object value)
           
 String getFieldName()
          フィールド名を取得する。
 MatchingMethod getMatchingMethod()
          マッチング方法を取得する。
 Object getMatchingValue()
          マッチング値を取得する。
 int hashCode()
           
 void setFieldName(String fieldName)
          フィールド名を設定する。
 void setMatchingMethod(MatchingMethod matchingMethod)
          マッチング方法を設定する。
 void setMatchingValue(Object matchingValue)
          マッチング値を設定する。
 String toString()
           
 
クラス java.lang.Object から継承されたメソッド
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

MatchingCondition

public MatchingCondition()
コンストラクタ。


MatchingCondition

public MatchingCondition(String fieldName,
                         Object matchingValue,
                         MatchingMethod matchingMethod)
コンストラクタ。

パラメータ:
fieldName - 属性名
matchingValue - 検索値
matchingMethod - 検索方法

MatchingCondition

public MatchingCondition(String fieldName,
                         Object matchingValue)
コンストラクタ。 matchingMethodにCOMPLETEを指定する。

パラメータ:
fieldName - 属性名
matchingValue - 検索値
メソッドの詳細

equals

public boolean equals(Object value)
オーバーライド:
クラス Object 内の equals

hashCode

public int hashCode()
オーバーライド:
クラス Object 内の hashCode

toString

public String toString()
オーバーライド:
クラス Object 内の toString

getFieldName

public String getFieldName()
フィールド名を取得する。

戻り値:
フィールド名

setFieldName

public void setFieldName(String fieldName)
フィールド名を設定する。

パラメータ:
fieldName - フィールド名

getMatchingValue

public Object getMatchingValue()
マッチング値を取得する。

戻り値:
マッチング値

setMatchingValue

public void setMatchingValue(Object matchingValue)
マッチング値を設定する。

パラメータ:
matchingValue - マッチング値

getMatchingMethod

public MatchingMethod getMatchingMethod()
マッチング方法を取得する。

戻り値:
マッチング方法

setMatchingMethod

public void setMatchingMethod(MatchingMethod matchingMethod)
マッチング方法を設定する。

パラメータ:
matchingMethod - マッチング方法