| |
|
| java.lang.Object org.jpox.store.expression.ScalarExpression org.jpox.store.expression.SqlTemporalExpression
All known Subclasses: org.jpox.store.expression.SqlTimeLiteral, org.jpox.store.expression.SqlTimestampLiteral, org.jpox.store.expression.SqlDateLiteral,
SqlTemporalExpression | public class SqlTemporalExpression extends ScalarExpression (Code) | | Representation of an expression with an SQL time type (SQLDate, SQLTime,
SQLTimestamp)
version: $Revision: 1.10 $ |
SqlTemporalExpression | public SqlTemporalExpression(QueryExpression qs, JavaTypeMapping mapping, LogicSetExpression te)(Code) | | Parameters: qs - the QueryExpression Parameters: mapping - the mapping associated to this expression Parameters: te - the TableExpression where this expression refers to |
SqlTemporalExpression | public SqlTemporalExpression(String functionName, QueryExpression qs)(Code) | | Generates statement as "FUNCTION_NAME"
Parameters: functionName - Parameters: qs - QueryExpression |
SqlTemporalExpression | public SqlTemporalExpression(String functionName, List args)(Code) | | Generates statement as e.g. FUNCTION_NAME(arg[,argN])
Parameters: functionName - Parameters: args - ScalarExpression list |
SqlTemporalExpression | public SqlTemporalExpression(ScalarExpression operand1, DyadicOperator op, ScalarExpression operand2)(Code) | | Performs a function on two arguments.
op(operand1,operand2)
operand1 op operand2
Parameters: operand1 - the first expression Parameters: op - the operator between operands Parameters: operand2 - the second expression |
getDayMethod | public NumericExpression getDayMethod()(Code) | | Method to return an expression for the day of the month (for this date).
The expression for the day of the month. |
getHourMethod | public NumericExpression getHourMethod()(Code) | | Method to return an expression for the hour (for this time).
The expression for the hour. |
getMinuteMethod | public NumericExpression getMinuteMethod()(Code) | | Method to return an expression for the minute (for this time).
The expression for the month. |
getMonthMethod | public NumericExpression getMonthMethod()(Code) | | Method to return an expression for the month (for this date).
The expression for the month. |
getSecondMethod | public NumericExpression getSecondMethod()(Code) | | Method to return an expression for the second (for this time).
The expression for the second. |
getYearMethod | public NumericExpression getYearMethod()(Code) | | Method to return an expression for the year (for this date).
The expression for the year. |
|
|
|