| Package | Description |
|---|---|
| com.mysema.query.support |
Various support classes
|
| com.mysema.query.types |
Contains Querydsl grammar types
|
| com.mysema.query.types.expr |
Operations represent typed operations with operator and arguments
|
| Modifier and Type | Method and Description |
|---|---|
Expression<?> |
CollectionAnyVisitor.visit(Operation<?> expr,
Context context) |
Expression<?> |
ListAccessVisitor.visit(Operation<?> expr,
Context context)
Deprecated.
|
Void |
PathsExtractor.visit(Operation<?> expr,
List<Path<?>> paths) |
Void |
SerializerBase.visit(Operation<?> expr,
Void context) |
Expression<?> |
ReplaceVisitor.visit(Operation<?> expr,
Void context) |
| Modifier and Type | Class and Description |
|---|---|
class |
OperationImpl<T>
OperationImpl is the default implementation of the Operation interface
|
class |
PredicateOperation
PredicateOperation provides a Boolean typed Operation implementation
|
| Modifier and Type | Method and Description |
|---|---|
static <RT> Operation<RT> |
OperationImpl.create(Class<? extends RT> type,
Operator<? super RT> operator,
Expression<?> one) |
static <RT> Operation<RT> |
OperationImpl.create(Class<? extends RT> type,
Operator<? super RT> operator,
Expression<?> one,
Expression<?> two) |
static <T> Operation<T> |
ExpressionUtils.operation(Class<? extends T> type,
Operator<T> operator,
Expression<?>... args)
Create a new Operation expression
|
static <T> Operation<T> |
ExpressionUtils.operation(Class<? extends T> type,
Operator<T> operator,
com.google.common.collect.ImmutableList<Expression<?>> args)
Create a new Operation expression
|
| Modifier and Type | Method and Description |
|---|---|
R |
Visitor.visit(Operation<?> expr,
C context) |
Void |
ParamsVisitor.visit(Operation<?> expr,
QueryMetadata context) |
Set<Expression<?>> |
ValidatingVisitor.visit(Operation<?> expr,
Set<Expression<?>> known) |
String |
ToStringVisitor.visit(Operation<?> o,
Templates templates) |
Integer |
HashCodeVisitor.visit(Operation<?> expr,
Void context) |
Path<?> |
PathExtractor.visit(Operation<?> expr,
Void context) |
| Modifier and Type | Class and Description |
|---|---|
class |
BooleanOperation
BooleanOperation represents boolean operations
|
class |
ComparableOperation<T extends Comparable<?>>
ComparableOperation represents Comparable operations
|
class |
DateOperation<T extends Comparable<?>>
DateOperation represents Date operations
|
class |
DateTimeOperation<T extends Comparable<?>>
DateTimeOperation represents DateTime operations
|
class |
DslOperation<T>
DslOperation represents a simple operation expression
|
class |
EnumOperation<T extends Enum<T>>
EnumOperation represents enum operations
|
class |
NumberOperation<T extends Number & Comparable<?>>
NumberOperation represents numeric operations
|
class |
SimpleOperation<T>
SimpleOperation represents a simple operation expression
|
class |
StringOperation
StringOperation represents a String typed operation
|
class |
TimeOperation<T extends Comparable<?>>
TimeOperation represents Time operations
|
Copyright © 2007–2015 Querydsl. All rights reserved.