Package org.genesys.blocks.model.filters
Class TemporalFilterBase<R extends TemporalFilterBase<R,T>,T extends Comparable<?>>
- java.lang.Object
-
- org.genesys.blocks.model.filters.TemporalFilterBase<R,T>
-
- All Implemented Interfaces:
Serializable,Filter,PropertyFilter<R,com.querydsl.core.types.dsl.TemporalExpression<T>>
- Direct Known Subclasses:
DateFilter,InstantFilter,LocalDateFilter
@Deprecated public abstract class TemporalFilterBase<R extends TemporalFilterBase<R,T>,T extends Comparable<?>> extends Object implements PropertyFilter<R,com.querydsl.core.types.dsl.TemporalExpression<T>>
Deprecated.UseTemporalFilter<LocalDate> instead.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TemporalFilterBase()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description com.querydsl.core.BooleanBuilderbuildQuery(com.querydsl.core.types.dsl.TemporalExpression<T> path)Deprecated.Builds the query.booleanisEmpty()Deprecated.Does the property filter specify any conditions?-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.genesys.blocks.model.filters.PropertyFilter
copyFilter
-
-
-
-
Field Detail
-
ge
public T extends Comparable<?> ge
Deprecated.Matches records where date is on or after "since" value.
-
gt
public T extends Comparable<?> gt
Deprecated.The gt.
-
le
public T extends Comparable<?> le
Deprecated.Matches records where date is on or before "until" value.
-
lt
public T extends Comparable<?> lt
Deprecated.The lt.
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
Deprecated.Description copied from interface:FilterDoes the property filter specify any conditions?
-
buildQuery
public com.querydsl.core.BooleanBuilder buildQuery(com.querydsl.core.types.dsl.TemporalExpression<T> path)
Deprecated.Builds the query.- Specified by:
buildQueryin interfacePropertyFilter<R extends TemporalFilterBase<R,T>,T extends Comparable<?>>- Parameters:
path- the date- Returns:
- the predicate
-
-