Package org.ametys.cms.search.query
Class LastValidationDateQuery
- java.lang.Object
 - 
- org.ametys.cms.search.query.LastValidationDateQuery
 
 
- 
- All Implemented Interfaces:
 Query
public class LastValidationDateQuery extends Object implements Query
Represents aQuerytesting the last validation date of a content. 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator 
 - 
 
- 
Field Summary
Fields Modifier and Type Field Description protected Query.Operator_operatorThe operator.protected AdaptableDate_valueThe value to test. 
- 
Constructor Summary
Constructors Constructor Description LastValidationDateQuery(LocalDate value)Build a LastValidationDateQuery.LastValidationDateQuery(Query.Operator op, LocalDate value)Build a LastValidationDateQuery.LastValidationDateQuery(Query.Operator op, AdaptableDate value)Build a LastValidationDateQuery.LastValidationDateQuery(AdaptableDate value)Build a LastValidationDateQuery. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbuild()Build the solr query string representing the Query object.booleanequals(Object obj)Query.OperatorgetOperator()Get the operator.AdaptableDategetValue()Get the value.inthashCode() 
 - 
 
- 
- 
Field Detail
- 
_operator
protected Query.Operator _operator
The operator. 
- 
_value
protected AdaptableDate _value
The value to test. 
 - 
 
- 
Constructor Detail
- 
LastValidationDateQuery
public LastValidationDateQuery(LocalDate value)
Build a LastValidationDateQuery.- Parameters:
 value- the value.
 
- 
LastValidationDateQuery
public LastValidationDateQuery(AdaptableDate value)
Build a LastValidationDateQuery.- Parameters:
 value- the value.
 
- 
LastValidationDateQuery
public LastValidationDateQuery(Query.Operator op, LocalDate value)
Build a LastValidationDateQuery.- Parameters:
 op- the operator.value- the value.
 
- 
LastValidationDateQuery
public LastValidationDateQuery(Query.Operator op, AdaptableDate value)
Build a LastValidationDateQuery.- Parameters:
 op- the operator.value- the value.
 
 - 
 
- 
Method Detail
- 
getOperator
public Query.Operator getOperator()
Get the operator.- Returns:
 - the operator.
 
 
- 
getValue
public AdaptableDate getValue()
Get the value.- Returns:
 - the value.
 
 
- 
build
public String build() throws QuerySyntaxException
Description copied from interface:QueryBuild the solr query string representing the Query object.- Specified by:
 buildin interfaceQuery- Returns:
 - the solr query string representing the Query object.
 - Throws:
 QuerySyntaxException- if the query can't be built because of a syntax error.
 
 - 
 
 -