|
||||||||||
前 次 | フレームあり フレームなし |
IdentificationVariable を使用しているパッケージ | |
---|---|
org.seasar.kuina.dao.criteria | Criteria APIを提供します. |
org.seasar.kuina.dao.criteria.grammar | JPQLの文法要素をJavaインタフェースとして提供します. |
org.seasar.kuina.dao.criteria.impl.grammar.aggregate | JPQLの文法要素である集計関数の実装を提供します. |
org.seasar.kuina.dao.criteria.impl.grammar.clause | JPQLの文法要素である句の実装を提供します. |
org.seasar.kuina.dao.criteria.impl.grammar.declaration | JPQLの文法要素であるFROM句の宣言の実装を提供します. |
org.seasar.kuina.dao.criteria.impl.grammar.expression | JPQLの文法要素である式の実装を提供します. |
org.seasar.kuina.dao.criteria.impl.grammar.join | JPQLの文法要素である結合の実装を提供します. |
org.seasar.kuina.dao.criteria での IdentificationVariable の使用 |
---|
IdentificationVariable を返す org.seasar.kuina.dao.criteria のメソッド | |
---|---|
static IdentificationVariable |
CriteriaOperations.variable(String variable)
引数で指定された名前を持つidentification_variableを作成します. |
IdentificationVariable 型のパラメータを持つ org.seasar.kuina.dao.criteria のメソッド | |
---|---|
static AggregateExpression |
CriteriaOperations.count(IdentificationVariable variable)
集計関数 COUNT を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.countDistinct(IdentificationVariable variable)
DISTINCT を含んだ集計関数COUNT を適用した式を作成します. |
void |
IdentificationVarialbleVisitor.identificationVariable(IdentificationVariable identificationVariable)
identification_variableごとに呼び出されます. |
static CollectionMemberExpression |
CriteriaOperations.memberOf(IdentificationVariable lhs,
PathExpression rhs)
MEMBEDR OF を使った式を作成します. |
static CollectionMemberExpression |
CriteriaOperations.memberOf(IdentificationVariable lhs,
String rhs)
MEMBEDR OF を使った式を作成します. |
static CollectionMemberExpression |
CriteriaOperations.notMemberOf(IdentificationVariable lhs,
PathExpression rhs)
NOT MEMBEDR OF を使った式を作成します. |
static CollectionMemberExpression |
CriteriaOperations.notMemberOf(IdentificationVariable lhs,
String rhs)
NOT MEMBEDR OF を使った式を作成します. |
org.seasar.kuina.dao.criteria.grammar での IdentificationVariable の使用 |
---|
IdentificationVariable を返す org.seasar.kuina.dao.criteria.grammar のメソッド | |
---|---|
IdentificationVariable |
IdentificationVariableDeclaration.getIdentificationVariable()
identification_variableを返します. |
IdentificationVariable |
SubqueryFromClause.getIdentificationVariable(int index)
インデックスで指定された位置のidentification_variableを返します. |
IdentificationVariable |
FromClause.getIdentificationVariable(int index)
インデックスで指定された位置のidentification_variableを返します. |
IdentificationVariable 型のパラメータを持つ org.seasar.kuina.dao.criteria.grammar のメソッド | |
---|---|
IdentificationVariableDeclaration |
IdentificationVariableDeclaration.inner(PathExpression associationPathSpec,
IdentificationVariable identificationVariable)
identification_variableを指定してjoin_association_path_expressionを内部結合します. |
IdentificationVariableDeclaration |
IdentificationVariableDeclaration.left(PathExpression associationPathSpec,
IdentificationVariable identificationVariable)
identification_variableを指定してjoin_association_path_expressionを左外部結合します. |
org.seasar.kuina.dao.criteria.impl.grammar.aggregate での IdentificationVariable の使用 |
---|
IdentificationVariable 型のパラメータを持つ org.seasar.kuina.dao.criteria.impl.grammar.aggregate のコンストラクタ | |
---|---|
Count(boolean distinct,
IdentificationVariable identificationVariable)
インスタンスを構築します。 |
|
Count(IdentificationVariable identificationVariable)
インスタンスを構築します。 |
org.seasar.kuina.dao.criteria.impl.grammar.clause での IdentificationVariable の使用 |
---|
IdentificationVariable を返す org.seasar.kuina.dao.criteria.impl.grammar.clause のメソッド | |
---|---|
IdentificationVariable |
SubqueryFromClauseImpl.getIdentificationVariable(int index)
|
IdentificationVariable |
FromClauseImpl.getIdentificationVariable(int index)
|
org.seasar.kuina.dao.criteria.impl.grammar.declaration での IdentificationVariable の使用 |
---|
IdentificationVariable として宣言されている org.seasar.kuina.dao.criteria.impl.grammar.declaration のフィールド | |
---|---|
protected IdentificationVariable |
IdentificationVariableDeclarationImpl.identificationVariable
identification_variable |
protected IdentificationVariable |
CollectionMemberDeclarationImpl.identificationVariable
identification_variable |
IdentificationVariable を返す org.seasar.kuina.dao.criteria.impl.grammar.declaration のメソッド | |
---|---|
IdentificationVariable |
IdentificationVariableDeclarationImpl.getIdentificationVariable()
|
IdentificationVariable |
CollectionMemberDeclarationImpl.getIdentificationVariable()
identification_variableを返します. |
IdentificationVariable 型のパラメータを持つ org.seasar.kuina.dao.criteria.impl.grammar.declaration のメソッド | |
---|---|
IdentificationVariableDeclaration |
IdentificationVariableDeclarationImpl.inner(PathExpression associationPathSpec,
IdentificationVariable identificationVariable)
|
IdentificationVariableDeclaration |
IdentificationVariableDeclarationImpl.left(PathExpression associationPathSpec,
IdentificationVariable identificationVariable)
|
IdentificationVariable 型のパラメータを持つ org.seasar.kuina.dao.criteria.impl.grammar.declaration のコンストラクタ | |
---|---|
CollectionMemberDeclarationImpl(PathExpression pathExpression,
IdentificationVariable identificationVariable)
インスタンスを構築します。 |
|
IdentificationVariableDeclarationImpl(Class<?> abstractSchemaClass,
IdentificationVariable identificationVariable,
JoinOrFetchJoin... joins)
インスタンスを構築します。 |
|
IdentificationVariableDeclarationImpl(String abstractSchemaName,
IdentificationVariable identificationVariable,
JoinOrFetchJoin... joins)
インスタンスを構築します。 |
org.seasar.kuina.dao.criteria.impl.grammar.expression での IdentificationVariable の使用 |
---|
IdentificationVariable を実装している org.seasar.kuina.dao.criteria.impl.grammar.expression のクラス | |
---|---|
class |
IdentificationVariableImpl
JPQLのidentification_variableを表すクラスです. |
org.seasar.kuina.dao.criteria.impl.grammar.join での IdentificationVariable の使用 |
---|
IdentificationVariable として宣言されている org.seasar.kuina.dao.criteria.impl.grammar.join のフィールド | |
---|---|
protected IdentificationVariable |
AbstractJoin.identificationVariable
identification_variable |
IdentificationVariable を返す org.seasar.kuina.dao.criteria.impl.grammar.join のメソッド | |
---|---|
protected static IdentificationVariable |
AbstractJoin.getDefaultIdentificationVariable(PathExpression associationPathSpec)
association_path_expressionからデフォルトのidentification_variableを求めて返します. |
IdentificationVariable |
AbstractJoin.getIdentificationVariable()
identification_variableを返します. |
IdentificationVariable 型のパラメータを持つ org.seasar.kuina.dao.criteria.impl.grammar.join のコンストラクタ | |
---|---|
AbstractJoin(String joinSpec,
PathExpression associationPathSpec,
IdentificationVariable identificationVariable)
インスタンスを構築します。 |
|
InnerJoin(PathExpression associationPathSpec,
IdentificationVariable identificationVariable)
インスタンスを構築します。 |
|
LeftOuterJoin(PathExpression associationPathSpec,
IdentificationVariable identificationVariable)
インスタンスを構築します。 |
|
||||||||||
前 次 | フレームあり フレームなし |