| Package | Description |
|---|---|
| com.mysema.query |
Contains basic Query elements
|
| com.mysema.query.support |
Various support classes
|
| com.mysema.query.types.expr |
Operations represent typed operations with operator and arguments
|
| com.mysema.query.types.path |
Paths represent typed property paths, variables and list-map-array access
|
| com.mysema.query.types.query |
Subquery implementations
|
| com.mysema.query.types.template |
Custom types are comparable to operations but contain the serialization
templates instead of operator patterns.
|
| Modifier and Type | Method and Description |
|---|---|
<RT extends Comparable<?>> |
Detachable.unique(DateTimeExpression<RT> projection)
Create a single row subquery expression for the given projection
|
| Modifier and Type | Method and Description |
|---|---|
static DateTimeExpression<Date> |
Expressions.currentTimestamp()
Get an expression representing the current time instant as a DateTimeExpression instance
|
static <T extends Comparable<?>> |
Expressions.dateTimeOperation(Class<T> type,
Operator<? super T> operator,
Expression<?>... args)
Create a new Operation expression
|
| Modifier and Type | Method and Description |
|---|---|
<RT extends Comparable<?>> |
DetachableMixin.unique(DateTimeExpression<RT> projection) |
<RT extends Comparable<?>> |
DetachableAdapter.unique(DateTimeExpression<RT> projection) |
<RT extends Comparable<?>> |
DetachableQuery.unique(DateTimeExpression<RT> projection) |
| Modifier and Type | Class and Description |
|---|---|
class |
DateTimeOperation<T extends Comparable<?>>
DateTimeOperation represents DateTime operations
|
| Modifier and Type | Method and Description |
|---|---|
DateTimeExpression<T> |
DateTimeExpression.as(Path<T> alias) |
DateTimeExpression<T> |
DateTimeExpression.as(String alias) |
DateTimeExpression<T> |
Coalesce.asDateTime() |
static <D extends Comparable<?>> |
DateTimeOperation.create(Class<D> type,
Operator<? super D> op,
Expression<?>... args) |
static <D extends Comparable<?>> |
DateTimeOperation.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,
Expression<?> two) |
static DateTimeExpression<Date> |
DateTimeExpression.currentDate()
Get an expression representing the current date as a DateTimeExpression instance
|
static <T extends Comparable> |
DateTimeExpression.currentDate(Class<T> cl)
Get an expression representing the current date as a DateTimeExpression instance
|
static DateTimeExpression<Date> |
DateTimeExpression.currentTimestamp()
Get an expression representing the current time instant as a DateTimeExpression instance
|
static <T extends Comparable> |
DateTimeExpression.currentTimestamp(Class<T> cl)
Get an expression representing the current time instant as a DateTimeExpression instance
|
DateTimeExpression<T> |
DateTimeExpression.max()
Get the maximum value of this expression (aggregation)
|
DateTimeExpression<T> |
DateTimeExpression.min()
Get the minimum value of this expression (aggregation)
|
| Modifier and Type | Method and Description |
|---|---|
CaseBuilder.Cases<Date,DateTimeExpression<Date>> |
CaseBuilder.Initial.then(Date date) |
<T extends Comparable> |
CaseBuilder.Initial.then(DateTimeExpression<T> expr) |
CaseBuilder.Cases<Timestamp,DateTimeExpression<Timestamp>> |
CaseBuilder.Initial.then(Timestamp ts) |
CaseBuilder.Cases<Date,DateTimeExpression<Date>> |
CaseBuilder.Initial.thenDateTime(Date date)
Deprecated.
|
CaseBuilder.Cases<Timestamp,DateTimeExpression<Timestamp>> |
CaseBuilder.Initial.thenDateTime(Timestamp ts)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends Comparable> |
CaseBuilder.Initial.then(DateTimeExpression<T> expr) |
| Modifier and Type | Class and Description |
|---|---|
class |
DateTimePath<T extends Comparable>
DateTimePath presents DateTime typed paths
|
| Modifier and Type | Class and Description |
|---|---|
class |
DateTimeSubQuery<T extends Comparable<?>>
DateTime typed single result subquery
|
| Modifier and Type | Class and Description |
|---|---|
class |
DateTimeTemplate<T extends Comparable<?>>
DateTimeTemplate defines custom dateTime expressions
|
| Modifier and Type | Method and Description |
|---|---|
static <T extends Comparable<?>> |
DateTimeTemplate.create(Class<T> type,
String template) |
static <T extends Comparable<?>> |
DateTimeTemplate.create(Class<T> type,
String template,
Object... args) |
static <T extends Comparable<?>> |
DateTimeTemplate.create(Class<T> type,
String template,
Object one) |
static <T extends Comparable<?>> |
DateTimeTemplate.create(Class<T> type,
String template,
Object one,
Object two) |
static <T extends Comparable<?>> |
DateTimeTemplate.create(Class<T> type,
Template template,
Object... args) |
Copyright © 2007–2015 Querydsl. All rights reserved.