org.seasar.kuina.dao.criteria.impl.grammar.operator
クラス Between

java.lang.Object
  上位を拡張 org.seasar.kuina.dao.criteria.impl.grammar.operator.AbstractBetween
      上位を拡張 org.seasar.kuina.dao.criteria.impl.grammar.operator.Between
すべての実装されたインタフェース:
Criterion, BetweenExpression, ConditionalExpression, ConditionalFactor, ConditionalPrimary, ConditionalTerm, SimpleCondExpression

public class Between
extends AbstractBetween

JPQLのBETWEENを表す抽象クラスです.

作成者:
koichik

フィールドの概要
protected static String OPERATOR
          BETWEEN のキーワード
 
クラス org.seasar.kuina.dao.criteria.impl.grammar.operator.AbstractBetween から継承されたフィールド
from, operand, operator, to
 
コンストラクタの概要
Between(ArithmeticExpression operand, ArithmeticExpression from, ArithmeticExpression to)
          インスタンスを構築します。
Between(DatetimeExpression operand, DatetimeExpression from, DatetimeExpression to)
          インスタンスを構築します。
Between(PathExpression operand, PathExpression from, PathExpression to)
          インスタンスを構築します。
Between(StringExpression operand, StringExpression from, StringExpression to)
          インスタンスを構築します。
 
メソッドの概要
 
クラス org.seasar.kuina.dao.criteria.impl.grammar.operator.AbstractBetween から継承されたメソッド
evaluate
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

OPERATOR

protected static final String OPERATOR
BETWEEN のキーワード

関連項目:
定数フィールド値
コンストラクタの詳細

Between

public Between(PathExpression operand,
               PathExpression from,
               PathExpression to)
インスタンスを構築します。

パラメータ:
operand - テスト対象を表すpath_expression
from - 範囲の下限を表すpath_expression
to - 範囲の上限を表すpath_expression

Between

public Between(ArithmeticExpression operand,
               ArithmeticExpression from,
               ArithmeticExpression to)
インスタンスを構築します。

パラメータ:
operand - テスト対象を表すarithmetic_expression
from - 範囲の下限を表すarithmetic_expression
to - 範囲の上限を表すarithmetic_expression

Between

public Between(StringExpression operand,
               StringExpression from,
               StringExpression to)
インスタンスを構築します。

パラメータ:
operand - テスト対象を表すstring_expression
from - 範囲の下限を表すstring_expression
to - 範囲の上限を表すstring_expression

Between

public Between(DatetimeExpression operand,
               DatetimeExpression from,
               DatetimeExpression to)
インスタンスを構築します。

パラメータ:
operand - テスト対象を表すdatetime_expression
from - 範囲の下限を表すdatetime_expression
to - 範囲の上限を表すdatetime_expression


Copyright © 2006-2009 The Seasar Foundation. All Rights Reserved.