com.mysema.query.types.expr
Class SimpleOperation<T>
java.lang.Object
com.mysema.query.types.expr.DslExpression<T>
com.mysema.query.types.expr.SimpleExpression<T>
com.mysema.query.types.expr.SimpleOperation<T>
- Type Parameters:
T
- expression type
- All Implemented Interfaces:
- Expression<T>, Operation<T>, Serializable
public class SimpleOperation<T>
- extends SimpleExpression<T>
- implements Operation<T>
SimpleOperation represents a simple operation expression
- Author:
- tiwe
- See Also:
- Serialized Form
Methods inherited from class com.mysema.query.types.expr.SimpleExpression |
as, as, count, countDistinct, eq, eq, eqAll, eqAny, in, in, in, isNotNull, isNull, ne, ne, neAll, neAny, notIn, notIn, notIn, when, when |
SimpleOperation
protected SimpleOperation(Class<T> type,
Operator<? super T> op,
Expression<?>... args)
SimpleOperation
protected SimpleOperation(Class<T> type,
Operator<? super T> op,
List<Expression<?>> args)
create
public static <D> SimpleExpression<D> create(Class<D> type,
Operator<? super D> op,
Expression<?>... args)
- Factory method
- Type Parameters:
D
- - Parameters:
type
- op
- args
-
- Returns:
accept
public final <R,C> R accept(Visitor<R,C> v,
C context)
- Description copied from interface:
Expression
- Accept the visitor with the given context
- Specified by:
accept
in interface Expression<T>
- Type Parameters:
R
- return typeC
- context type- Parameters:
v
- visitorcontext
- context of visit
- Returns:
getArg
public Expression<?> getArg(int index)
- Description copied from interface:
Operation
- Get the argument with the given index
- Specified by:
getArg
in interface Operation<T>
- Returns:
getArgs
public List<Expression<?>> getArgs()
- Description copied from interface:
Operation
- Get the arguments of this operation
- Specified by:
getArgs
in interface Operation<T>
- Returns:
getOperator
public Operator<? super T> getOperator()
- Description copied from interface:
Operation
- Get the operator symbol for this operation
- Specified by:
getOperator
in interface Operation<T>
- Returns:
Copyright © 2007-2012 Mysema Ltd. All Rights Reserved.