org.apache.openjpa.jdbc.kernel.exps
Interface Val

All Superinterfaces:
Serializable, Value
All Known Implementing Classes:
Abs, Args, Concat, IndexOf, Lit, Math, Null, Param, PCPath, Sqrt, StringLength, Substring, ToLowerCase, ToUpperCase, Trim

public interface Val
extends Value

A Value represents any non-operator in a query filter, including constants, variables, and object fields.

Author:
Abe White

Field Summary
static int ABS_VAL
           
static int ARGS_VAL
           
static int CONCAT_VAL
           
static int FORCE_OUTER
          Initialization flag indicating to force an outer join into any relation path.
static int INDEXOF_VAL
           
static int JOIN_REL
          Initialization flag indicating to join into any relation path.
static int LENGTH_VAL
           
static int LOCATE_VAL
           
static int LOWER_VAL
           
static int MATH_VAL
           
static int NULL_CMP
          Initialization flag indicating that this value will be compared to null.
static int SQRT_VAL
           
static int SUBSTRING_VAL
           
static int TRIM_VAL
           
static int UPPER_VAL
           
static int VAL
           
 
Method Summary
 void appendIsEmpty(Select sel, ExpContext ctx, ExpState state, SQLBuffer sql)
          Append the SQL testing whether this value is empty to the given buffer.
 void appendIsNotEmpty(Select sel, ExpContext ctx, ExpState state, SQLBuffer sql)
          Append the SQL testing whether this value is not empty to the given buffer.
 void appendIsNotNull(Select sel, ExpContext ctx, ExpState state, SQLBuffer sql)
          Append the SQL testing whether this value is not null to the given buffer.
 void appendIsNull(Select sel, ExpContext ctx, ExpState state, SQLBuffer sql)
          Append the SQL testing whether this value is null to the given buffer.
 void appendSize(Select sel, ExpContext ctx, ExpState state, SQLBuffer sql)
          Append the SQL checking the size of this value.
 void appendTo(Select sel, ExpContext ctx, ExpState state, SQLBuffer sql, int index)
          Append the indexth SQL element to the given buffer.
 void calculateValue(Select sel, ExpContext ctx, ExpState state, Val other, ExpState otherState)
          Calculate and cache the SQL for this value.
 int getId()
           
 void groupBy(Select sel, ExpContext ctx, ExpState state)
          Group by this value.
 ExpState initialize(Select sel, ExpContext ctx, int flags)
          Initialize the value.
 int length(Select sel, ExpContext ctx, ExpState state)
          Return the number of SQL elements in this value.
 Object load(ExpContext ctx, ExpState state, Result res)
          Load the data for this value.
 void orderBy(Select sel, ExpContext ctx, ExpState state, boolean asc)
          Order by this value.
 void select(Select sel, ExpContext ctx, ExpState state, boolean pks)
          Select the data for this value.
 void selectColumns(Select sel, ExpContext ctx, ExpState state, boolean pks)
          Select just the columns for this value.
 Object toDataStoreValue(Select sel, ExpContext ctx, ExpState state, Object val)
          Return the datastore value of the given object in the context of this value.
 
Methods inherited from interface org.apache.openjpa.kernel.exps.Value
acceptVisit, getMetaData, getType, isAggregate, isVariable, isXPath, setImplicitType, setMetaData
 

Field Detail

NULL_CMP

static final int NULL_CMP
Initialization flag indicating that this value will be compared to null.

See Also:
Constant Field Values

JOIN_REL

static final int JOIN_REL
Initialization flag indicating to join into any relation path.

See Also:
Constant Field Values

FORCE_OUTER

static final int FORCE_OUTER
Initialization flag indicating to force an outer join into any relation path.

See Also:
Constant Field Values

VAL

static final int VAL
See Also:
Constant Field Values

MATH_VAL

static final int MATH_VAL
See Also:
Constant Field Values

CONCAT_VAL

static final int CONCAT_VAL
See Also:
Constant Field Values

SUBSTRING_VAL

static final int SUBSTRING_VAL
See Also:
Constant Field Values

UPPER_VAL

static final int UPPER_VAL
See Also:
Constant Field Values

LOWER_VAL

static final int LOWER_VAL
See Also:
Constant Field Values

TRIM_VAL

static final int TRIM_VAL
See Also:
Constant Field Values

LENGTH_VAL

static final int LENGTH_VAL
See Also:
Constant Field Values

LOCATE_VAL

static final int LOCATE_VAL
See Also:
Constant Field Values

ARGS_VAL

static final int ARGS_VAL
See Also:
Constant Field Values

INDEXOF_VAL

static final int INDEXOF_VAL
See Also:
Constant Field Values

ABS_VAL

static final int ABS_VAL
See Also:
Constant Field Values

SQRT_VAL

static final int SQRT_VAL
See Also:
Constant Field Values
Method Detail

initialize

ExpState initialize(Select sel,
                    ExpContext ctx,
                    int flags)
Initialize the value. This method should recursively initialize any sub-values.


toDataStoreValue

Object toDataStoreValue(Select sel,
                        ExpContext ctx,
                        ExpState state,
                        Object val)
Return the datastore value of the given object in the context of this value.


select

void select(Select sel,
            ExpContext ctx,
            ExpState state,
            boolean pks)
Select the data for this value.


selectColumns

void selectColumns(Select sel,
                   ExpContext ctx,
                   ExpState state,
                   boolean pks)
Select just the columns for this value.


groupBy

void groupBy(Select sel,
             ExpContext ctx,
             ExpState state)
Group by this value.


orderBy

void orderBy(Select sel,
             ExpContext ctx,
             ExpState state,
             boolean asc)
Order by this value.


load

Object load(ExpContext ctx,
            ExpState state,
            Result res)
            throws SQLException
Load the data for this value.

Throws:
SQLException

calculateValue

void calculateValue(Select sel,
                    ExpContext ctx,
                    ExpState state,
                    Val other,
                    ExpState otherState)
Calculate and cache the SQL for this value. This method is called before length or any append methods.

Parameters:
other - the value being compared to, or null if not a comparison

length

int length(Select sel,
           ExpContext ctx,
           ExpState state)
Return the number of SQL elements in this value.


appendTo

void appendTo(Select sel,
              ExpContext ctx,
              ExpState state,
              SQLBuffer sql,
              int index)
Append the indexth SQL element to the given buffer.


appendIsEmpty

void appendIsEmpty(Select sel,
                   ExpContext ctx,
                   ExpState state,
                   SQLBuffer sql)
Append the SQL testing whether this value is empty to the given buffer.


appendIsNotEmpty

void appendIsNotEmpty(Select sel,
                      ExpContext ctx,
                      ExpState state,
                      SQLBuffer sql)
Append the SQL testing whether this value is not empty to the given buffer.


appendSize

void appendSize(Select sel,
                ExpContext ctx,
                ExpState state,
                SQLBuffer sql)
Append the SQL checking the size of this value.


appendIsNull

void appendIsNull(Select sel,
                  ExpContext ctx,
                  ExpState state,
                  SQLBuffer sql)
Append the SQL testing whether this value is null to the given buffer.


appendIsNotNull

void appendIsNotNull(Select sel,
                     ExpContext ctx,
                     ExpState state,
                     SQLBuffer sql)
Append the SQL testing whether this value is not null to the given buffer.


getId

int getId()


Copyright © 2006-2009 Apache Software Foundation. All Rights Reserved.