| 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 |
|---|---|
static BooleanExpression |
Expressions.booleanOperation(Operator<Boolean> operation,
Expression<?>... args)
Create a new Boolean operation
|
static <T extends Comparable<?>> |
Expressions.comparableOperation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
static <T extends Comparable<?>> |
Expressions.dateOperation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
static <T extends Comparable<?>> |
Expressions.dateTimeOperation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
static <T> DslExpression<T> |
Expressions.dslOperation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
protected Template |
SerializerBase.getTemplate(Operator<?> op) |
static <T extends Number & Comparable<?>> |
Expressions.numberOperation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
static <T> SimpleExpression<T> |
Expressions.operation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
static BooleanExpression |
Expressions.predicate(Operator<Boolean> operation,
Expression<?>... args)
Create a new Predicate operation
|
static StringExpression |
Expressions.stringOperation(Operator<? super String> operator,
Expression<?>... args)
Create a new Operation expression
|
static <T extends Comparable<?>> |
Expressions.timeOperation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
protected void |
SerializerBase.visitOperation(Class<?> type,
Operator<?> operator,
List<? extends Expression<?>> args) |
| Modifier and Type | Class and Description |
|---|---|
class |
OperatorImpl<T>
OperatorImpl is the default implementation of the
Operator interface |
class |
PathType
PathType represents the relation of a
Path to its parent |
| Modifier and Type | Field and Description |
|---|---|
static Set<Operator<?>> |
Ops.aggOps |
static Set<Operator<?>> |
Ops.compareOps |
static Set<Operator<?>> |
Ops.equalsOps |
static Set<Operator<?>> |
Ops.notEqualsOps |
| Modifier and Type | Method and Description |
|---|---|
Operator<? super T> |
Operation.getOperator()
Get the operator symbol for this operation
|
Operator<? super T> |
OperationImpl.getOperator() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
Templates.add(Operator<?> op,
String pattern) |
protected void |
Templates.add(Operator<?> op,
String pattern,
int pre) |
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 PredicateOperation |
PredicateOperation.create(Operator<Boolean> operator,
Expression<?> one) |
static PredicateOperation |
PredicateOperation.create(Operator<Boolean> operator,
Expression<?> one,
Expression<?> two) |
int |
Templates.getPrecedence(Operator<?> op) |
Template |
Templates.getTemplate(Operator<?> op) |
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
|
static PredicateOperation |
ExpressionUtils.predicate(Operator<Boolean> operator,
Expression<?>... args)
Create a new Operation expression
|
static PredicateOperation |
ExpressionUtils.predicate(Operator<Boolean> operator,
com.google.common.collect.ImmutableList<Expression<?>> args)
Create a new Operation expression
|
protected void |
Templates.setPrecedence(int p,
Operator<?>... ops) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
Templates.add(Map<Operator<?>,String> ops) |
protected void |
Templates.setPrecedence(int p,
Iterable<? extends Operator<?>> ops) |
| Constructor and Description |
|---|
OperationImpl(Class<? extends T> type,
Operator<? super T> operator,
Expression<?>... args) |
OperationImpl(Class<? extends T> type,
Operator<? super T> operator,
com.google.common.collect.ImmutableList<Expression<?>> args) |
PredicateOperation(Operator<Boolean> operator,
com.google.common.collect.ImmutableList<Expression<?>> args) |
| Modifier and Type | Method and Description |
|---|---|
Operator<? super T> |
NumberOperation.getOperator() |
Operator<? super String> |
StringOperation.getOperator() |
Operator<? super Boolean> |
BooleanOperation.getOperator() |
Operator<? super T> |
TimeOperation.getOperator() |
Operator<? super T> |
DslOperation.getOperator() |
Operator<? super T> |
ComparableOperation.getOperator() |
Operator<? super T> |
DateOperation.getOperator() |
Operator<? super T> |
EnumOperation.getOperator() |
Operator<? super T> |
DateTimeOperation.getOperator() |
Operator<? super T> |
SimpleOperation.getOperator() |
| Modifier and Type | Method and Description |
|---|---|
static <D extends Enum<D>> |
EnumOperation.create(Class<? extends D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D extends Number & Comparable<?>> |
NumberOperation.create(Class<? extends D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D extends Enum<D>> |
EnumOperation.create(Class<? extends D> type,
Operator<? super D> op,
Expression<?> one) |
static <D extends Number & Comparable<?>> |
NumberOperation.create(Class<? extends D> type,
Operator<? super D> op,
Expression<?> one) |
static <D extends Enum<D>> |
EnumOperation.create(Class<? extends D> type,
Operator<? super D> op,
Expression<?> one,
Expression<?> two) |
static <D extends Number & Comparable<?>> |
NumberOperation.create(Class<? extends D> type,
Operator<? super D> op,
Expression<?> one,
Expression<?> two) |
static <D> DslExpression<D> |
DslOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D> SimpleExpression<D> |
SimpleOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D extends Comparable<?>> |
TimeOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D extends Comparable<?>> |
ComparableOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D extends Comparable<?>> |
DateOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D extends Comparable<?>> |
DateTimeOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D> DslExpression<D> |
DslOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one) |
static <D> SimpleExpression<D> |
SimpleOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one) |
static <D extends Comparable<?>> |
TimeOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one) |
static <D extends Comparable<?>> |
DateOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one) |
static <D extends Comparable<?>> |
DateTimeOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one) |
static <D> DslExpression<D> |
DslOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one,
Expression<?> two) |
static <D> SimpleExpression<D> |
SimpleOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one,
Expression<?> two) |
static <D extends Comparable<?>> |
TimeOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one,
Expression<?> two) |
static <D extends Comparable<?>> |
DateOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one,
Expression<?> two) |
static <D extends Comparable<?>> |
DateTimeOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?> one,
Expression<?> two) |
static <E> CollectionOperation<E> |
CollectionOperation.create(Operator<?> op,
Class<E> type,
Expression<?>... args) |
static <E> CollectionOperation<E> |
CollectionOperation.create(Operator<?> op,
Class<E> type,
Expression<?> one) |
static <E> CollectionOperation<E> |
CollectionOperation.create(Operator<?> op,
Class<E> type,
Expression<?> one,
Expression<?> two) |
static BooleanExpression |
BooleanOperation.create(Operator<? super Boolean> op,
Expression<?>... args) |
static BooleanExpression |
BooleanOperation.create(Operator<? super Boolean> op,
Expression<?> one) |
static BooleanExpression |
BooleanOperation.create(Operator<? super Boolean> op,
Expression<?> one,
Expression<?> two) |
static StringExpression |
StringOperation.create(Operator<? super String> op,
Expression<?>... args) |
static StringExpression |
StringOperation.create(Operator<? super String> op,
Expression<?> one) |
static StringExpression |
StringOperation.create(Operator<? super String> op,
Expression<?> one,
Expression<?> two) |
| Constructor and Description |
|---|
BooleanOperation(Operator<? super Boolean> op,
Expression<?>... args) |
BooleanOperation(Operator<? super Boolean> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
CollectionOperation(Operator<?> op,
Class<? super E> type,
Expression<?>... args) |
CollectionOperation(Operator<?> op,
Class<? super E> type,
com.google.common.collect.ImmutableList<Expression<?>> args) |
ComparableOperation(Class<T> type,
Operator<? super T> op,
Expression<?>... args) |
ComparableOperation(Class<T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
DateOperation(Class<T> type,
Operator<? super T> op,
Expression<?>... args) |
DateOperation(Class<T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
DateTimeOperation(Class<T> type,
Operator<? super T> op,
Expression<?>... args) |
DateTimeOperation(Class<T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
DslOperation(Class<T> type,
Operator<? super T> op,
Expression<?>... args) |
DslOperation(Class<T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
EnumOperation(Class<? extends T> type,
Operator<? super T> op,
Expression<?>... args) |
EnumOperation(Class<? extends T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
NumberOperation(Class<? extends T> type,
Operator<? super T> op,
Expression<?>... args) |
NumberOperation(Class<? extends T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
SimpleOperation(Class<T> type,
Operator<? super T> op,
Expression<?>... args) |
SimpleOperation(Class<T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
StringOperation(Operator<? super String> op,
Expression<?>... args) |
StringOperation(Operator<? super String> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
TimeOperation(Class<T> type,
Operator<? super T> op,
Expression<?>... args) |
TimeOperation(Class<T> type,
Operator<? super T> op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
Copyright © 2007–2015 Querydsl. All rights reserved.