Package | Description |
---|---|
com.querydsl.collections |
Java Bean collections support
|
com.querydsl.core.support |
Various support classes
|
com.querydsl.core.types |
Expression types
|
com.querydsl.core.types.dsl |
DSL expression types
|
com.querydsl.core.util |
General utility classes
|
com.querydsl.jdo |
JDO support
|
com.querydsl.jpa |
JPA support
|
com.querydsl.lucene3 |
Lucene 3 support
|
com.querydsl.mongodb |
MongoDB support
|
com.querydsl.spatial |
Spatial types using Geolatte
|
com.querydsl.spatial.hibernate |
Serialization patterns for Hibernate Spatial
|
com.querydsl.spatial.jts |
Spatial types using JTS
|
com.querydsl.sql |
SQL/JDBC support
|
com.querydsl.sql.spatial |
Spatial support
|
Modifier and Type | Method and Description |
---|---|
static Number |
CollQueryFunctions.aggregate(Collection<Number> source,
Expression<?> expr,
Operator aggregator) |
protected void |
CollQuerySerializer.visitOperation(Class<?> type,
Operator operator,
List<? extends Expression<?>> args) |
Modifier and Type | Method and Description |
---|---|
protected Template |
SerializerBase.getTemplate(Operator op) |
protected void |
SerializerBase.visitOperation(Class<?> type,
Operator operator,
List<? extends Expression<?>> args) |
Modifier and Type | Class and Description |
---|---|
class |
Ops
Ops provides the operators for the fluent query grammar. |
static class |
Ops.AggOps
Aggregation operators
|
static class |
Ops.DateTimeOps
Date and time operators
|
static class |
Ops.MathOps
Math operators
|
static class |
Ops.QuantOps
Quantification operators
|
static class |
Ops.StringOps
String operators
|
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 |
OperationImpl.getOperator() |
Operator |
Operation.getOperator()
Get the operator symbol for this operation
|
Modifier and Type | Method and Description |
---|---|
protected void |
Templates.add(Operator op,
String pattern) |
protected void |
Templates.add(Operator op,
String pattern,
int pre) |
int |
Templates.getPrecedence(Operator op) |
Template |
Templates.getTemplate(Operator op) |
static <T> Operation<T> |
ExpressionUtils.operation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static <T> Operation<T> |
ExpressionUtils.operation(Class<? extends T> type,
Operator operator,
com.google.common.collect.ImmutableList<Expression<?>> args)
Create a new Operation expression
|
static PredicateOperation |
ExpressionUtils.predicate(Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static PredicateOperation |
ExpressionUtils.predicate(Operator 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 |
---|
Operation(int index1,
int index2,
Operator operator,
boolean asString) |
OperationConst(int index1,
BigDecimal arg2,
Operator operator,
boolean asString)
Deprecated.
|
OperationConst(int index1,
Number arg2,
Operator operator,
boolean asString) |
OperationImpl(Class<? extends T> type,
Operator operator,
Expression<?>... args) |
OperationImpl(Class<? extends T> type,
Operator operator,
com.google.common.collect.ImmutableList<Expression<?>> args) |
PredicateOperation(Operator operator,
com.google.common.collect.ImmutableList<Expression<?>> args) |
Modifier and Type | Method and Description |
---|---|
Operator |
TimeOperation.getOperator() |
Operator |
StringOperation.getOperator() |
Operator |
SimpleOperation.getOperator() |
Operator |
NumberOperation.getOperator() |
Operator |
EnumOperation.getOperator() |
Operator |
DslOperation.getOperator() |
Operator |
DateTimeOperation.getOperator() |
Operator |
DateOperation.getOperator() |
Operator |
ComparableOperation.getOperator() |
Operator |
BooleanOperation.getOperator() |
Modifier and Type | Method and Description |
---|---|
static BooleanOperation |
Expressions.booleanOperation(Operator operator,
Expression<?>... args)
Create a new Boolean operation
|
static <T> CollectionExpression<Collection<T>,T> |
Expressions.collectionOperation(Class<T> elementType,
Operator operator,
Expression<?>... args)
Create a new Collection operation expression
|
static <T extends Comparable<?>> |
Expressions.comparableOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static <T extends Comparable<?>> |
Expressions.dateOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static <T extends Comparable<?>> |
Expressions.dateTimeOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static <T> DslOperation<T> |
Expressions.dslOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static <T extends Enum<T>> |
Expressions.enumOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Enum operation expression
|
static <T extends Number & Comparable<?>> |
Expressions.numberOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static <T> SimpleOperation<T> |
Expressions.operation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static BooleanOperation |
Expressions.predicate(Operator operator,
Expression<?>... args)
Create a new Predicate operation
|
static <T> SimpleOperation<T> |
Expressions.simpleOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static StringOperation |
Expressions.stringOperation(Operator operator,
Expression<?>... args)
Create a new Operation expression
|
static <T extends Comparable<?>> |
Expressions.timeOperation(Class<? extends T> type,
Operator operator,
Expression<?>... args)
Create a new Operation expression
|
Constructor and Description |
---|
BooleanOperation(Operator op,
Expression<?>... args) |
BooleanOperation(Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
CollectionOperation(Class<? super E> type,
Operator op,
Expression<?>... args) |
CollectionOperation(Class<? super E> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
ComparableOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
ComparableOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
DateOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
DateOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
DateTimeOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
DateTimeOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
DslOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
DslOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
EnumOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
EnumOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
NumberOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
NumberOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
SimpleOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
SimpleOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
StringOperation(Operator op,
Expression<?>... args) |
StringOperation(Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
TimeOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
TimeOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
Modifier and Type | Method and Description |
---|---|
static <D extends Number> |
MathUtils.result(D num1,
Number num2,
Operator operator) |
Modifier and Type | Method and Description |
---|---|
protected void |
JDOQLSerializer.visitOperation(Class<?> type,
Operator operator,
List<? extends Expression<?>> args) |
Modifier and Type | Class and Description |
---|---|
class |
JPQLOps
JPQLOps provides JPQL specific operators |
Modifier and Type | Field and Description |
---|---|
protected static Set<? extends Operator> |
JPQLTemplates.OTHER_LIKE_CASES |
Modifier and Type | Method and Description |
---|---|
protected void |
NativeSQLSerializer.visitOperation(Class<?> type,
Operator operator,
List<? extends Expression<?>> args) |
protected void |
JPQLSerializer.visitOperation(Class<?> type,
Operator operator,
List<? extends Expression<?>> args) |
boolean |
JPQLTemplates.wrapElements(Operator operator) |
boolean |
HQLTemplates.wrapElements(Operator operator) |
Modifier and Type | Class and Description |
---|---|
class |
LuceneOps
Lucene specific operators
|
Modifier and Type | Class and Description |
---|---|
class |
MongodbOps
MongoDB specific operators
|
Modifier and Type | Class and Description |
---|---|
class |
SpatialOps
SpatialOps provides Operator instances for spatial operations |
Modifier and Type | Method and Description |
---|---|
Operator |
PolygonOperation.getOperator() |
Operator |
PointOperation.getOperator() |
Operator |
LineStringOperation.getOperator() |
Operator |
GeometryOperation.getOperator() |
Modifier and Type | Method and Description |
---|---|
static <T extends org.geolatte.geom.Geometry> |
GeometryExpressions.geometryOperation(Class<? extends T> type,
Operator op,
Expression<?>... args)
Create a new Geometry operation expression
|
static GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpressions.geometryOperation(Operator op,
Expression<?>... args)
Create a new Geometry operation expression
|
static LineStringExpression<org.geolatte.geom.LineString> |
GeometryExpressions.lineStringOperation(Operator op,
Expression<?>... args)
Create a new LineString operation expression
|
static PointExpression<org.geolatte.geom.Point> |
GeometryExpressions.pointOperation(Operator op,
Expression<?>... args)
Create a new Point operation expression
|
static PolygonExpression<org.geolatte.geom.Polygon> |
GeometryExpressions.polygonOperation(Operator op,
Expression<?>... args)
Create a new Polygon operation expression
|
Constructor and Description |
---|
GeometryOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
GeometryOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
LineStringOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
LineStringOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
PointOperation(Class<T> type,
Operator op,
Expression<?>... args) |
PointOperation(Class<T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
PolygonOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
PolygonOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
Modifier and Type | Method and Description |
---|---|
static Map<Operator,String> |
HibernateSpatialSupport.getSpatialOps() |
Modifier and Type | Method and Description |
---|---|
Operator |
JTSPolygonOperation.getOperator() |
Operator |
JTSPointOperation.getOperator() |
Operator |
JTSLineStringOperation.getOperator() |
Operator |
JTSGeometryOperation.getOperator() |
Modifier and Type | Method and Description |
---|---|
static <T extends com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpressions.geometryOperation(Class<? extends T> type,
Operator op,
Expression<?>... args)
Create a new Geometry operation expression
|
static JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpressions.geometryOperation(Operator op,
Expression<?>... args)
Create a new Geometry operation expression
|
static JTSLineStringExpression<com.vividsolutions.jts.geom.LineString> |
JTSGeometryExpressions.lineStringOperation(Operator op,
Expression<?>... args)
Create a new LineString operation expression
|
static JTSPointExpression<com.vividsolutions.jts.geom.Point> |
JTSGeometryExpressions.pointOperation(Operator op,
Expression<?>... args)
Create a new Point operation expression
|
static JTSPolygonExpression<com.vividsolutions.jts.geom.Polygon> |
JTSGeometryExpressions.polygonOperation(Operator op,
Expression<?>... args)
Create a new Polygon operation expression
|
Constructor and Description |
---|
JTSGeometryOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
JTSGeometryOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
JTSLineStringOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
JTSLineStringOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
JTSPointOperation(Class<T> type,
Operator op,
Expression<?>... args) |
JTSPointOperation(Class<T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
JTSPolygonOperation(Class<? extends T> type,
Operator op,
Expression<?>... args) |
JTSPolygonOperation(Class<? extends T> type,
Operator op,
com.google.common.collect.ImmutableList<Expression<?>> args) |
Modifier and Type | Class and Description |
---|---|
class |
SQLOps
SQLOps provides SQL specific operators |
Modifier and Type | Field and Description |
---|---|
protected static Set<? extends Operator> |
SQLTemplates.OTHER_LIKE_CASES |
Modifier and Type | Method and Description |
---|---|
protected void |
SQLSerializer.visitOperation(Class<?> type,
Operator operator,
List<? extends Expression<?>> args) |
Constructor and Description |
---|
WindowOver(Class<? extends T> type,
Operator op) |
WindowOver(Class<? extends T> type,
Operator op,
Expression<?> arg) |
WindowOver(Class<? extends T> type,
Operator op,
Expression<?> arg1,
Expression<?> arg2) |
WithinGroup(Class<? extends T> type,
Operator op) |
WithinGroup(Class<? extends T> type,
Operator op,
Expression<?>... args) |
WithinGroup(Class<? extends T> type,
Operator op,
Expression<?> arg) |
WithinGroup(Class<? extends T> type,
Operator op,
Expression<?> arg1,
Expression<?> arg2) |
Modifier and Type | Method and Description |
---|---|
static Map<Operator,String> |
SpatialTemplatesSupport.getSpatialOps(boolean asFunction) |
static Map<Operator,String> |
SpatialTemplatesSupport.getSpatialOps(String prefix,
boolean asFunction) |
Copyright © 2007–2016 Querydsl. All rights reserved.