|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object org.seasar.kuina.dao.internal.binder.CalendarParameterBinder
public class CalendarParameterBinder
Calendar
型のパラメータ値をQuery
にバインドします.
Query.setParameter(String, java.util.Calendar,
javax.persistence.TemporalType)
,
Query.setParameter(int, java.util.Calendar,
javax.persistence.TemporalType)
フィールドの概要 | |
---|---|
protected String |
name
パラメータ名 (Named Parameterの場合) |
protected int |
position
パラメータの位置 (Positional Parameterの場合) |
protected TemporalType |
temporalType
パラメータの時制 |
protected Calendar |
value
パラメータの値 |
コンストラクタの概要 | |
---|---|
CalendarParameterBinder(int position,
Calendar value,
TemporalType temporalType)
Positional Parameterのインスタンスを構築します。 |
|
CalendarParameterBinder(int position,
TemporalType temporalType)
Positional Parameterをバインドするインスタンスを構築します。 |
|
CalendarParameterBinder(String name,
Calendar value,
TemporalType temporalType)
Named Parameterのインスタンスを構築します。 |
|
CalendarParameterBinder(String name,
TemporalType temporalType)
Named Parameterをバインドするインスタンスを構築します。 |
メソッドの概要 | |
---|---|
void |
bind(Query query)
このインスタンスが保持しているパラメータ値を Query にバインドします. |
void |
bind(Query query,
Object value)
value をQuery にバインドします. |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
フィールドの詳細 |
---|
protected final String name
protected final int position
protected final Calendar value
protected TemporalType temporalType
コンストラクタの詳細 |
---|
public CalendarParameterBinder(String name, TemporalType temporalType)
パラメータの値はbind(Query, Object)
によって与えられます.
name
- パラメータの名前temporalType
- パラメータの時制public CalendarParameterBinder(int position, TemporalType temporalType)
パラメータの値はbind(Query, Object)
によって与えられます.
position
- パラメータの位置temporalType
- パラメータの時制public CalendarParameterBinder(String name, Calendar value, TemporalType temporalType)
name
- パラメータの名前value
- パラメータの値temporalType
- パラメータの時制public CalendarParameterBinder(int position, Calendar value, TemporalType temporalType)
position
- パラメータの位置value
- パラメータの値temporalType
- パラメータの時制メソッドの詳細 |
---|
public void bind(Query query)
ParameterBinder
の記述: Query
にバインドします.
ParameterBinder
内の bind
query
- Querypublic void bind(Query query, Object value)
ParameterBinder
の記述: value
をQuery
にバインドします.
ParameterBinder
内の bind
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |