org.castor.cpa.query
Interface Expression

All Superinterfaces:
QueryObject
All Known Subinterfaces:
Field, Function, Literal, Parameter, Projection, Schema
All Known Implementing Classes:
Abs, AbstractExpression, AbstractField, AbstractFunction, AbstractLiteral, AbstractNumericLiteral, AbstractParameter, AbstractTemporalLiteral, Add, BigDecimalLiteral, BooleanLiteral, CompoundExpression, Concat, CustomFunction, DateLiteral, Divide, DoubleLiteral, EnumLiteral, FieldImpl, Length, Locate, LongLiteral, Lower, Multiply, NamedParameter, Negate, PositionalParameter, ProjectionImpl, Remainder, SchemaImpl, Sqrt, StringLiteral, Substring, Subtract, TimeLiteral, TimestampLiteral, Trim, Upper

public interface Expression
extends QueryObject

Interface specification for expressions of query objects.

Since:
1.3
Version:
$Revision: 7121 $ $Date: 2006-04-25 16:09:10 -0600 (Tue, 25 Apr 2006) $
Author:
Udai Gupta, Ralf Joachim

Method Summary
 Function abs()
          The method for ABS function of query objects.
 Expression add(java.math.BigDecimal value)
          The method for Add ( + ) additive arithmetic expression of query objects.
 Expression add(double value)
          The method for Add ( + ) additive arithmetic expression of query objects.
 Expression add(Expression value)
          The method for Add ( + ) additive arithmetic expression of query objects.
 Expression add(long value)
          The method for Add arithmetic expression of query objects.
 Condition between(java.math.BigDecimal low, java.math.BigDecimal high)
          Between.
 Condition between(double low, double high)
          Between.
 Condition between(Expression low, Expression high)
          Between.
 Condition between(long low, long high)
          Between.
 Condition between(java.lang.String low, java.lang.String high)
          Between.
 Condition between(TemporalType temporalType, java.util.Calendar low, java.util.Calendar high)
          Between.
 Condition between(TemporalType temporalType, java.util.Date low, java.util.Date high)
          Between.
 Expression concat(Expression value)
          The method for Concat ( || ) additive arithmetic expression of query objects.
 Expression concat(java.lang.String value)
          The method for Concat ( || ) additive arithmetic expression of query objects.
 Expression divide(java.math.BigDecimal value)
          The method for Divide ( / ) multiplicative arithmetic expression of query objects.
 Expression divide(double value)
          The method for Divide ( / ) multiplicative arithmetic expression of query objects.
 Expression divide(Expression value)
          The method for Divide ( / ) multiplicative arithmetic expression of query objects.
 Expression divide(long value)
          The method for Divide ( / ) multiplicative arithmetic expression of query objects.
 Condition equal(java.math.BigDecimal value)
          Equal.
 Condition equal(boolean value)
          Equal.
 Condition equal(double value)
          Equal.
 Condition equal(Expression value)
          Equal.
 Condition equal(long value)
          Equal.
 Condition equal(java.lang.String value)
          Equal.
 Condition equal(TemporalType temporalType, java.util.Calendar value)
          Equal.
 Condition equal(TemporalType temporalType, java.util.Date value)
          Equal.
 Condition greaterEqual(java.math.BigDecimal value)
          Greater equal.
 Condition greaterEqual(double value)
          Greater equal.
 Condition greaterEqual(Expression value)
          Greater equal.
 Condition greaterEqual(long value)
          Greater equal.
 Condition greaterEqual(java.lang.String value)
          Greater equal.
 Condition greaterEqual(TemporalType temporalType, java.util.Calendar value)
          Greater equal.
 Condition greaterEqual(TemporalType temporalType, java.util.Date value)
          Greater equal.
 Condition greaterThan(java.math.BigDecimal value)
          Greater Then.
 Condition greaterThan(double value)
          Greater Then.
 Condition greaterThan(Expression value)
          Greater Then.
 Condition greaterThan(long value)
          Greater Then.
 Condition greaterThan(java.lang.String value)
          Greater Then.
 Condition greaterThan(TemporalType temporalType, java.util.Calendar value)
          Greater Then.
 Condition greaterThan(TemporalType temporalType, java.util.Date value)
          Greater Then.
 Function length()
          The method for LENGTH function of query objects.
 Condition lessEqual(java.math.BigDecimal value)
          Less equal.
 Condition lessEqual(double value)
          Less equal.
 Condition lessEqual(Expression value)
          Less equal.
 Condition lessEqual(long value)
          Less equal.
 Condition lessEqual(java.lang.String value)
          Less equal.
 Condition lessEqual(TemporalType temporalType, java.util.Calendar value)
          Less equal.
 Condition lessEqual(TemporalType temporalType, java.util.Date value)
          Less equal.
 Condition lessThan(java.math.BigDecimal value)
          Less Then.
 Condition lessThan(double value)
          Less Then.
 Condition lessThan(Expression value)
          Less Then.
 Condition lessThan(long value)
          Less Then.
 Condition lessThan(java.lang.String value)
          Less Then.
 Condition lessThan(TemporalType temporalType, java.util.Calendar value)
          Less Then.
 Condition lessThan(TemporalType temporalType, java.util.Date value)
          Less Then.
 Condition like(Parameter pattern)
          Like.
 Condition like(Parameter pattern, char escape)
          Like.
 Condition like(Parameter pattern, Parameter escape)
          Like.
 Condition like(java.lang.String pattern)
          Like.
 Condition like(java.lang.String pattern, char escape)
          Like.
 Condition like(java.lang.String pattern, Parameter escape)
          Like.
 Function locate(Expression value)
          The method for LOCATE function of query objects.
 Function locate(Expression value, Expression index)
          Locate.
 Function locate(Expression value, int index)
          Locate.
 Function locate(java.lang.String value)
          The method for LOCATE function of query objects.
 Function locate(java.lang.String value, Expression index)
          The method for LOCATE function of query objects.
 Function locate(java.lang.String value, int index)
          The method for LOCATE function of query objects.
 Function lower()
          The method for LOWER function of query objects.
 Expression multiply(java.math.BigDecimal value)
          The method for Multiply ( * ) multiplicative arithmetic expression of query objects.
 Expression multiply(double value)
          The method for Multiply ( * ) multiplicative arithmetic expression of query objects.
 Expression multiply(Expression value)
          The method for Multiply ( * ) multiplicative arithmetic expression of query objects.
 Expression multiply(long value)
          The method for Concat ( || ) additive arithmetic expression of query objects.
 Expression negate()
          Negate.
 Condition notBetween(java.math.BigDecimal low, java.math.BigDecimal high)
          Not between.
 Condition notBetween(double low, double high)
          Not between.
 Condition notBetween(Expression low, Expression high)
          Not between.
 Condition notBetween(long low, long high)
          Not between.
 Condition notBetween(java.lang.String low, java.lang.String high)
          Not between.
 Condition notBetween(TemporalType temporalType, java.util.Calendar low, java.util.Calendar high)
          Not between.
 Condition notBetween(TemporalType temporalType, java.util.Date low, java.util.Date high)
          Not between.
 Condition notEqual(java.math.BigDecimal value)
          Not equal.
 Condition notEqual(boolean value)
          Not equal.
 Condition notEqual(double value)
          Not equal.
 Condition notEqual(Expression value)
          Not equal.
 Condition notEqual(long value)
          Not equal.
 Condition notEqual(java.lang.String value)
          Not equal.
 Condition notEqual(TemporalType temporalType, java.util.Calendar value)
          Not equal.
 Condition notEqual(TemporalType temporalType, java.util.Date value)
          Not equal.
 Condition notLike(Parameter pattern)
          Not like.
 Condition notLike(Parameter pattern, char escape)
          Not like.
 Condition notLike(Parameter pattern, Parameter escape)
          Not like.
 Condition notLike(java.lang.String pattern)
          Not like.
 Condition notLike(java.lang.String pattern, char escape)
          Not like.
 Condition notLike(java.lang.String pattern, Parameter escape)
          Not like.
 Expression plus()
          Plus.
 Expression remainder(java.math.BigDecimal value)
          The method for Reminder ( % ) multiplicative arithmetic expression of query objects.
 Expression remainder(double value)
          The method for Reminder ( % ) multiplicative arithmetic expression of query objects.
 Expression remainder(Expression value)
          The method for Reminder ( % ) multiplicative arithmetic expression of query objects.
 Expression remainder(long value)
          The method for Reminder ( % ) multiplicative arithmetic expression of query objects.
 Function sqrt()
          The method for SQRT function of query objects.
 Function substring(Expression index, Expression length)
          Substring.
 Function substring(Expression index, int length)
          Substring.
 Function substring(int index, Expression length)
          Substring.
 Function substring(int index, int length)
          Substring.
 Expression subtract(java.math.BigDecimal value)
          The method for Subtract ( - ) additive arithmetic expression of query objects.
 Expression subtract(double value)
          The method for Subtract ( - ) additive arithmetic expression of query objects.
 Expression subtract(Expression value)
          The method for Subtract ( - ) additive arithmetic expression of query objects.
 Expression subtract(long value)
          The method for Subtract ( - ) additive arithmetic expression of query objects.
 Function trim()
          Trim.
 Function trim(char character)
          Trim.
 Function trim(Parameter character)
          Trim.
 Function trim(TrimSpecification trimSpecification)
          Trim.
 Function trim(TrimSpecification trimSpecification, char character)
          Trim.
 Function trim(TrimSpecification trimSpecification, Parameter character)
          Trim.
 Function upper()
          The method for UPPER function of query objects..
 
Methods inherited from interface org.castor.cpa.query.QueryObject
toString
 

Method Detail

add

Expression add(long value)
The method for Add arithmetic expression of query objects.

Parameters:
value - The long value
Returns:
The Expression of query objects

add

Expression add(double value)
The method for Add ( + ) additive arithmetic expression of query objects.

Parameters:
value - The double value
Returns:
The Expression of query objects of query objects

add

Expression add(java.math.BigDecimal value)
The method for Add ( + ) additive arithmetic expression of query objects.

Parameters:
value - The BigDecimal value
Returns:
The Expression of query objects

add

Expression add(Expression value)
The method for Add ( + ) additive arithmetic expression of query objects.

Parameters:
value - The Expression value
Returns:
The Expression of query objects

subtract

Expression subtract(long value)
The method for Subtract ( - ) additive arithmetic expression of query objects.

Parameters:
value - The long value
Returns:
The Expression of query objects

subtract

Expression subtract(double value)
The method for Subtract ( - ) additive arithmetic expression of query objects.

Parameters:
value - The double value
Returns:
The Expression of query objects

subtract

Expression subtract(java.math.BigDecimal value)
The method for Subtract ( - ) additive arithmetic expression of query objects.

Parameters:
value - The BigDecimal value
Returns:
The Expression of query objects

subtract

Expression subtract(Expression value)
The method for Subtract ( - ) additive arithmetic expression of query objects.

Parameters:
value - The Expression value
Returns:
The Expression of query objects

concat

Expression concat(java.lang.String value)
The method for Concat ( || ) additive arithmetic expression of query objects.

Parameters:
value - The String value
Returns:
The Expression of query objects

concat

Expression concat(Expression value)
The method for Concat ( || ) additive arithmetic expression of query objects.

Parameters:
value - The Expression value
Returns:
The Expression of query objects

multiply

Expression multiply(long value)
The method for Concat ( || ) additive arithmetic expression of query objects.

Parameters:
value - The long value
Returns:
The Expression of query objects

multiply

Expression multiply(double value)
The method for Multiply ( * ) multiplicative arithmetic expression of query objects.

Parameters:
value - The double value
Returns:
The Expression of query objects

multiply

Expression multiply(java.math.BigDecimal value)
The method for Multiply ( * ) multiplicative arithmetic expression of query objects.

Parameters:
value - The BigDecimal value
Returns:
The Expression of query objects

multiply

Expression multiply(Expression value)
The method for Multiply ( * ) multiplicative arithmetic expression of query objects.

Parameters:
value - The Expression value
Returns:
The Expression of query objects

divide

Expression divide(long value)
The method for Divide ( / ) multiplicative arithmetic expression of query objects.

Parameters:
value - The long value
Returns:
The Expression of query objects

divide

Expression divide(double value)
The method for Divide ( / ) multiplicative arithmetic expression of query objects.

Parameters:
value - The double value
Returns:
The Expression of query objects

divide

Expression divide(java.math.BigDecimal value)
The method for Divide ( / ) multiplicative arithmetic expression of query objects.

Parameters:
value - The BigDecimal value
Returns:
The Expression of query objects

divide

Expression divide(Expression value)
The method for Divide ( / ) multiplicative arithmetic expression of query objects.

Parameters:
value - The Expression value
Returns:
The Expression of query objects

remainder

Expression remainder(long value)
The method for Reminder ( % ) multiplicative arithmetic expression of query objects.

Parameters:
value - The long value
Returns:
The Expression of query objects

remainder

Expression remainder(double value)
The method for Reminder ( % ) multiplicative arithmetic expression of query objects.

Parameters:
value - The double value
Returns:
The Expression of query objects

remainder

Expression remainder(java.math.BigDecimal value)
The method for Reminder ( % ) multiplicative arithmetic expression of query objects.

Parameters:
value - The BigDecimal value
Returns:
The Expression of query objects

remainder

Expression remainder(Expression value)
The method for Reminder ( % ) multiplicative arithmetic expression of query objects.

Parameters:
value - The Expression value
Returns:
The Expression of query objects

plus

Expression plus()
Plus.

Returns:
The Expression of query objects

negate

Expression negate()
Negate.

Returns:
The Expression of query objects

length

Function length()
The method for LENGTH function of query objects.

Returns:
The Function of query objects

abs

Function abs()
The method for ABS function of query objects.

Returns:
The Function of query objects

sqrt

Function sqrt()
The method for SQRT function of query objects.

Returns:
The Function of query objects

lower

Function lower()
The method for LOWER function of query objects.

Returns:
The Function of query objects

upper

Function upper()
The method for UPPER function of query objects..

Returns:
The Function of query objects

locate

Function locate(java.lang.String value)
The method for LOCATE function of query objects.

Parameters:
value - The String value
Returns:
The Function of query objects

locate

Function locate(Expression value)
The method for LOCATE function of query objects.

Parameters:
value - The Expression value
Returns:
The Function of query objects

locate

Function locate(java.lang.String value,
                int index)
The method for LOCATE function of query objects.

Parameters:
value - The String value
index - The index
Returns:
The Function of query objects

locate

Function locate(java.lang.String value,
                Expression index)
The method for LOCATE function of query objects.

Parameters:
value - The value
index - The index
Returns:
The Function of query objects

locate

Function locate(Expression value,
                int index)
Locate.

Parameters:
value - The value
index - The index
Returns:
The Function of query objects

locate

Function locate(Expression value,
                Expression index)
Locate.

Parameters:
value - The value
index - The index
Returns:
The Function of query objects

substring

Function substring(int index,
                   int length)
Substring.

Parameters:
index - The index
length - The length
Returns:
The Function of query objects

substring

Function substring(int index,
                   Expression length)
Substring.

Parameters:
index - The index
length - The length
Returns:
The Function of query objects

substring

Function substring(Expression index,
                   int length)
Substring.

Parameters:
index - The index
length - The length
Returns:
The Function of query objects

substring

Function substring(Expression index,
                   Expression length)
Substring.

Parameters:
index - The index
length - The length
Returns:
The Function of query objects

trim

Function trim()
Trim.

Returns:
The Function of query objects

trim

Function trim(char character)
Trim.

Parameters:
character - The character
Returns:
The Function of query objects

trim

Function trim(Parameter character)
Trim.

Parameters:
character - The character
Returns:
The Function of query objects

trim

Function trim(TrimSpecification trimSpecification)
Trim.

Parameters:
trimSpecification - The trim specification
Returns:
The Function of query objects

trim

Function trim(TrimSpecification trimSpecification,
              char character)
Trim.

Parameters:
trimSpecification - The trim specification
character - The character
Returns:
The Function of query objects

trim

Function trim(TrimSpecification trimSpecification,
              Parameter character)
Trim.

Parameters:
trimSpecification - The trim specification
character - The character
Returns:
The Function of query objects

equal

Condition equal(boolean value)
Equal.

Parameters:
value - The value
Returns:
The condition

equal

Condition equal(long value)
Equal.

Parameters:
value - The value
Returns:
The condition

equal

Condition equal(double value)
Equal.

Parameters:
value - The value
Returns:
The condition

equal

Condition equal(java.math.BigDecimal value)
Equal.

Parameters:
value - The value
Returns:
The condition

equal

Condition equal(java.lang.String value)
Equal.

Parameters:
value - The value
Returns:
The condition

equal

Condition equal(TemporalType temporalType,
                java.util.Date value)
Equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

equal

Condition equal(TemporalType temporalType,
                java.util.Calendar value)
Equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

equal

Condition equal(Expression value)
Equal.

Parameters:
value - The value
Returns:
The condition

notEqual

Condition notEqual(boolean value)
Not equal.

Parameters:
value - The value
Returns:
The condition

notEqual

Condition notEqual(long value)
Not equal.

Parameters:
value - The value
Returns:
The condition

notEqual

Condition notEqual(double value)
Not equal.

Parameters:
value - The value
Returns:
The condition

notEqual

Condition notEqual(java.math.BigDecimal value)
Not equal.

Parameters:
value - The value
Returns:
The condition

notEqual

Condition notEqual(java.lang.String value)
Not equal.

Parameters:
value - The value
Returns:
The condition

notEqual

Condition notEqual(TemporalType temporalType,
                   java.util.Date value)
Not equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

notEqual

Condition notEqual(TemporalType temporalType,
                   java.util.Calendar value)
Not equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

notEqual

Condition notEqual(Expression value)
Not equal.

Parameters:
value - The value
Returns:
The condition

lessThan

Condition lessThan(long value)
Less Then.

Parameters:
value - The value
Returns:
The condition

lessThan

Condition lessThan(double value)
Less Then.

Parameters:
value - The value
Returns:
The condition

lessThan

Condition lessThan(java.math.BigDecimal value)
Less Then.

Parameters:
value - The value
Returns:
The condition

lessThan

Condition lessThan(java.lang.String value)
Less Then.

Parameters:
value - The value
Returns:
The condition

lessThan

Condition lessThan(TemporalType temporalType,
                   java.util.Date value)
Less Then.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

lessThan

Condition lessThan(TemporalType temporalType,
                   java.util.Calendar value)
Less Then.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

lessThan

Condition lessThan(Expression value)
Less Then.

Parameters:
value - The value
Returns:
The condition

lessEqual

Condition lessEqual(long value)
Less equal.

Parameters:
value - The value
Returns:
The condition

lessEqual

Condition lessEqual(double value)
Less equal.

Parameters:
value - The value
Returns:
The condition

lessEqual

Condition lessEqual(java.math.BigDecimal value)
Less equal.

Parameters:
value - The value
Returns:
The condition

lessEqual

Condition lessEqual(java.lang.String value)
Less equal.

Parameters:
value - The value
Returns:
The condition

lessEqual

Condition lessEqual(TemporalType temporalType,
                    java.util.Date value)
Less equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

lessEqual

Condition lessEqual(TemporalType temporalType,
                    java.util.Calendar value)
Less equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

lessEqual

Condition lessEqual(Expression value)
Less equal.

Parameters:
value - The value
Returns:
The condition

greaterEqual

Condition greaterEqual(long value)
Greater equal.

Parameters:
value - The value
Returns:
The condition

greaterEqual

Condition greaterEqual(double value)
Greater equal.

Parameters:
value - The value
Returns:
The condition

greaterEqual

Condition greaterEqual(java.math.BigDecimal value)
Greater equal.

Parameters:
value - The value
Returns:
The condition

greaterEqual

Condition greaterEqual(java.lang.String value)
Greater equal.

Parameters:
value - The value
Returns:
The condition

greaterEqual

Condition greaterEqual(TemporalType temporalType,
                       java.util.Date value)
Greater equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

greaterEqual

Condition greaterEqual(TemporalType temporalType,
                       java.util.Calendar value)
Greater equal.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

greaterEqual

Condition greaterEqual(Expression value)
Greater equal.

Parameters:
value - The value
Returns:
The condition

greaterThan

Condition greaterThan(long value)
Greater Then.

Parameters:
value - The value
Returns:
The condition

greaterThan

Condition greaterThan(double value)
Greater Then.

Parameters:
value - The value
Returns:
The condition

greaterThan

Condition greaterThan(java.math.BigDecimal value)
Greater Then.

Parameters:
value - The value
Returns:
The condition

greaterThan

Condition greaterThan(java.lang.String value)
Greater Then.

Parameters:
value - The value
Returns:
The condition

greaterThan

Condition greaterThan(TemporalType temporalType,
                      java.util.Date value)
Greater Then.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

greaterThan

Condition greaterThan(TemporalType temporalType,
                      java.util.Calendar value)
Greater Then.

Parameters:
temporalType - The temporal type
value - The value
Returns:
The condition

greaterThan

Condition greaterThan(Expression value)
Greater Then.

Parameters:
value - The value
Returns:
The condition

like

Condition like(java.lang.String pattern)
Like.

Parameters:
pattern - The pattern
Returns:
The condition

like

Condition like(java.lang.String pattern,
               char escape)
Like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

like

Condition like(java.lang.String pattern,
               Parameter escape)
Like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

like

Condition like(Parameter pattern)
Like.

Parameters:
pattern - The pattern
Returns:
The condition

like

Condition like(Parameter pattern,
               char escape)
Like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

like

Condition like(Parameter pattern,
               Parameter escape)
Like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

notLike

Condition notLike(java.lang.String pattern)
Not like.

Parameters:
pattern - The pattern
Returns:
The condition

notLike

Condition notLike(java.lang.String pattern,
                  char escape)
Not like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

notLike

Condition notLike(java.lang.String pattern,
                  Parameter escape)
Not like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

notLike

Condition notLike(Parameter pattern)
Not like.

Parameters:
pattern - The pattern
Returns:
The condition

notLike

Condition notLike(Parameter pattern,
                  char escape)
Not like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

notLike

Condition notLike(Parameter pattern,
                  Parameter escape)
Not like.

Parameters:
pattern - The pattern
escape - The escape
Returns:
The condition

between

Condition between(long low,
                  long high)
Between.

Parameters:
low - The low
high - The high
Returns:
The condition

between

Condition between(double low,
                  double high)
Between.

Parameters:
low - The low
high - The high
Returns:
The condition

between

Condition between(java.math.BigDecimal low,
                  java.math.BigDecimal high)
Between.

Parameters:
low - The low
high - The high
Returns:
The condition

between

Condition between(java.lang.String low,
                  java.lang.String high)
Between.

Parameters:
low - The low
high - The high
Returns:
The condition

between

Condition between(TemporalType temporalType,
                  java.util.Date low,
                  java.util.Date high)
Between.

Parameters:
temporalType - The temporal type
low - The low
high - The high
Returns:
The condition

between

Condition between(TemporalType temporalType,
                  java.util.Calendar low,
                  java.util.Calendar high)
Between.

Parameters:
temporalType - The temporal type
low - The low
high - The high
Returns:
The condition

between

Condition between(Expression low,
                  Expression high)
Between.

Parameters:
low - The low
high - The high
Returns:
The condition

notBetween

Condition notBetween(long low,
                     long high)
Not between.

Parameters:
low - The low
high - The high
Returns:
The condition

notBetween

Condition notBetween(double low,
                     double high)
Not between.

Parameters:
low - The low
high - The high
Returns:
The condition

notBetween

Condition notBetween(java.math.BigDecimal low,
                     java.math.BigDecimal high)
Not between.

Parameters:
low - The low
high - The high
Returns:
The condition

notBetween

Condition notBetween(java.lang.String low,
                     java.lang.String high)
Not between.

Parameters:
low - The low
high - The high
Returns:
The condition

notBetween

Condition notBetween(TemporalType temporalType,
                     java.util.Date low,
                     java.util.Date high)
Not between.

Parameters:
temporalType - The temporal type
low - The low
high - The high
Returns:
The condition

notBetween

Condition notBetween(TemporalType temporalType,
                     java.util.Calendar low,
                     java.util.Calendar high)
Not between.

Parameters:
temporalType - The temporal type
low - The low
high - The high
Returns:
The condition

notBetween

Condition notBetween(Expression low,
                     Expression high)
Not between.

Parameters:
low - The low
high - The high
Returns:
The condition


Intalio Inc. (C) 1999-2008. All rights reserved http://www.intalio.com