mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
This commit is contained in:
parent
bd5c06a763
commit
e473a3b9a5
@ -13,10 +13,12 @@ import com.mysema.query.types.operation.Ops;
|
||||
|
||||
/**
|
||||
* EDate represents Date expressions
|
||||
* The date representation is compatible with the Gregorian calendar.
|
||||
*
|
||||
* @param <D>
|
||||
*
|
||||
* @author tiwe
|
||||
*
|
||||
* @param <D>
|
||||
* @see http://en.wikipedia.org/wiki/Gregorian_calendar
|
||||
*/
|
||||
@SuppressWarnings({"unchecked","serial"})
|
||||
public abstract class EDate<D extends Comparable> extends EDateOrTime<D> {
|
||||
@ -88,7 +90,7 @@ public abstract class EDate<D extends Comparable> extends EDateOrTime<D> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a month expression (range 1-12)
|
||||
* Get a month expression (range 1-12 / JAN-DEC)
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
|
||||
@ -13,10 +13,12 @@ import com.mysema.query.types.operation.Ops;
|
||||
|
||||
/**
|
||||
* EDateTime represents Date / Time expressions
|
||||
*
|
||||
* @author tiwe
|
||||
* The date representation is compatible with the Gregorian calendar.
|
||||
*
|
||||
* @param <D>
|
||||
*
|
||||
* @author tiwe
|
||||
* @see http://en.wikipedia.org/wiki/Gregorian_calendar
|
||||
*/
|
||||
@SuppressWarnings({"unchecked","serial"})
|
||||
public abstract class EDateTime<D extends Comparable> extends EDate<D> {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user