|
||||||||||
前 次 | フレームあり フレームなし |
AggregateExpression を使用しているパッケージ | |
---|---|
org.seasar.kuina.dao.criteria | Criteria APIを提供します. |
org.seasar.kuina.dao.criteria.impl.grammar.aggregate | JPQLの文法要素である集計関数の実装を提供します. |
org.seasar.kuina.dao.criteria での AggregateExpression の使用 |
---|
AggregateExpression を返す org.seasar.kuina.dao.criteria のメソッド | |
---|---|
static AggregateExpression |
CriteriaOperations.avg(PathExpression path)
集計関数 AVG を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.avg(String path)
集計関数 AVG を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.avgDistinct(PathExpression path)
DISTINCT を含んだ集計関数AVG を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.avgDistinct(String path)
DISTINCT を含んだ集計関数AVG を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.count(IdentificationVariable variable)
集計関数 COUNT を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.count(PathExpression path)
集計関数 COUNT を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.count(String path)
集計関数 COUNT を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.countDistinct(IdentificationVariable variable)
DISTINCT を含んだ集計関数COUNT を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.countDistinct(PathExpression path)
DISTINCT を含んだ集計関数COUNT を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.countDistinct(String path)
DISTINCT を含んだ集計関数COUNT を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.max(PathExpression path)
集計関数 MAX を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.max(String path)
集計関数 MAX を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.maxDistinct(PathExpression path)
DISTINCT を含んだ集計関数MAX を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.maxDistinct(String path)
DISTINCT を含んだ集計関数MAX を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.min(PathExpression path)
集計関数 MIN を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.min(String path)
集計関数 MIN を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.minDistinct(PathExpression path)
DISTINCT を含んだ集計関数MIN を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.minDistinct(String path)
DISTINCT を含んだ集計関数MIN を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.sum(PathExpression path)
集計関数 SUM を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.sum(String path)
集計関数 SUM を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.sumDistinct(PathExpression path)
DISTINCT を含んだ集計関数SUM を適用した式を作成します. |
static AggregateExpression |
CriteriaOperations.sumDistinct(String path)
DISTINCT を含んだ集計関数SUM を適用した式を作成します. |
org.seasar.kuina.dao.criteria.impl.grammar.aggregate での AggregateExpression の使用 |
---|
AggregateExpression を実装している org.seasar.kuina.dao.criteria.impl.grammar.aggregate のクラス | |
---|---|
class |
AbstractAggregateExpression
JPQLのaggregate_expressionを表す抽象クラスです. |
class |
Avg
JPQLのAVG関数を表すクラスです. |
class |
Count
JPQLのCOUNT関数を表現するクラスです. |
class |
Max
JPQLのMAX関数を表現するクラスです. |
class |
Min
JPQLのMIN関数を表現するクラスです. |
class |
Sum
JPQLのSUM関数を表現するクラスです. |
|
||||||||||
前 次 | フレームあり フレームなし |