Apache CXF API

org.apache.cxf.jaxrs.ext.search.client
Interface Property

All Known Implementing Classes:
FiqlSearchConditionBuilder.Builder

public interface Property

Part of fluent interface of SearchConditionBuilder.


Method Summary
 CompleteCondition after(Date date)
          Is date property after (greater than) given date?
 CompleteCondition after(Duration distanceFromNow)
          Is date property after (greater than) date distant from now by given period of time?
 CompleteCondition before(Date date)
          Is date property before (less than) given date?
 CompleteCondition before(Duration distanceFromNow)
          Is date property before (less than) date distant from now by given period of time?
 CompleteCondition comparesTo(ConditionType op, Date value)
          Generic
 CompleteCondition comparesTo(ConditionType op, Double value)
          Generic
 CompleteCondition comparesTo(ConditionType op, Duration value)
          Generic
 CompleteCondition comparesTo(ConditionType op, Integer value)
          Generic
 CompleteCondition comparesTo(ConditionType op, Long value)
          Generic
 CompleteCondition comparesTo(ConditionType op, String value)
          Generic
 CompleteCondition equalTo(Date date, Date... moreValues)
          Is date property same as given date?
 CompleteCondition equalTo(Double number, Double... moreValues)
          Is numeric property equal to given double number?
 CompleteCondition equalTo(Duration distanceFromNow, Duration... moreValues)
          Is date property same as date distant from now by given period of time?
 CompleteCondition equalTo(Integer number, Integer... moreValues)
          Is numeric property equal to given long number?
 CompleteCondition equalTo(Long number, Long... moreValues)
          Is numeric property equal to given long number?
 CompleteCondition equalTo(String value, String... moreValues)
          Is textual property equal to given literal or matching given pattern?
 CompleteCondition greaterOrEqualTo(Double number)
          Is numeric property greater or equal to given number?
 CompleteCondition greaterOrEqualTo(Integer number)
          Is numeric property greater or equal to given number?
 CompleteCondition greaterOrEqualTo(Long number)
          Is numeric property greater or equal to given number?
 CompleteCondition greaterThan(Double number)
          Is numeric property greater than given number?
 CompleteCondition greaterThan(Integer number)
          Is numeric property greater than given number?
 CompleteCondition greaterThan(Long number)
          Is numeric property greater than given number?
 CompleteCondition lessOrEqualTo(Double number)
          Is numeric property less or equal to given number?
 CompleteCondition lessOrEqualTo(Integer number)
          Is numeric property less or equal to given number?
 CompleteCondition lessOrEqualTo(Long number)
          Is numeric property less or equal to given number?
 CompleteCondition lessThan(Double number)
          Is numeric property less than given number?
 CompleteCondition lessThan(Integer number)
          Is numeric property less than given number?
 CompleteCondition lessThan(Long number)
          Is numeric property less than given number?
 CompleteCondition lexicalAfter(String literal)
          Is textual property lexically after (greater than) given literal?
 CompleteCondition lexicalBefore(String literal)
          Is textual property lexically before (less than) given literal?
 CompleteCondition lexicalNotAfter(String literal)
          Is textual property lexically not after (less or equal to) given literal?
 CompleteCondition lexicalNotBefore(String literal)
          Is textual property lexically not before (greater or equal to) given literal?
 CompleteCondition notAfter(Date date)
          Is date property not after (less or equal to) given date?
 CompleteCondition notAfter(Duration distanceFromNow)
          Is date property not after (less or equal to) date distant from now by given period of time?
 CompleteCondition notBefore(Date date)
          Is date property not before (greater or equal to) given date?
 CompleteCondition notBefore(Duration distanceFromNow)
          Is date property not before (greater or equal to) date distant from now by given period of time?
 CompleteCondition notEqualTo(Date date)
          Is date property different than given date?
 CompleteCondition notEqualTo(Double number)
          Is numeric property different than given double number?
 CompleteCondition notEqualTo(Duration distanceFromNow)
          Is date property different than date distant from now by given period of time?
 CompleteCondition notEqualTo(Integer number)
          Is numeric property different than given int number?
 CompleteCondition notEqualTo(Long number)
          Is numeric property different than given long number?
 CompleteCondition notEqualTo(String literalOrPattern)
          Is textual property different than given literal or not matching given pattern?
 

Method Detail

equalTo

CompleteCondition equalTo(String value,
                          String... moreValues)
Is textual property equal to given literal or matching given pattern?


equalTo

CompleteCondition equalTo(Double number,
                          Double... moreValues)
Is numeric property equal to given double number?


equalTo

CompleteCondition equalTo(Long number,
                          Long... moreValues)
Is numeric property equal to given long number?


equalTo

CompleteCondition equalTo(Integer number,
                          Integer... moreValues)
Is numeric property equal to given long number?


equalTo

CompleteCondition equalTo(Date date,
                          Date... moreValues)
Is date property same as given date?


equalTo

CompleteCondition equalTo(Duration distanceFromNow,
                          Duration... moreValues)
Is date property same as date distant from now by given period of time?


notEqualTo

CompleteCondition notEqualTo(String literalOrPattern)
Is textual property different than given literal or not matching given pattern?


notEqualTo

CompleteCondition notEqualTo(Double number)
Is numeric property different than given double number?


notEqualTo

CompleteCondition notEqualTo(Long number)
Is numeric property different than given long number?


notEqualTo

CompleteCondition notEqualTo(Integer number)
Is numeric property different than given int number?


notEqualTo

CompleteCondition notEqualTo(Date date)
Is date property different than given date?


notEqualTo

CompleteCondition notEqualTo(Duration distanceFromNow)
Is date property different than date distant from now by given period of time?


greaterThan

CompleteCondition greaterThan(Double number)
Is numeric property greater than given number?


greaterThan

CompleteCondition greaterThan(Long number)
Is numeric property greater than given number?


greaterThan

CompleteCondition greaterThan(Integer number)
Is numeric property greater than given number?


lessThan

CompleteCondition lessThan(Double number)
Is numeric property less than given number?


lessThan

CompleteCondition lessThan(Long number)
Is numeric property less than given number?


lessThan

CompleteCondition lessThan(Integer number)
Is numeric property less than given number?


greaterOrEqualTo

CompleteCondition greaterOrEqualTo(Double number)
Is numeric property greater or equal to given number?


greaterOrEqualTo

CompleteCondition greaterOrEqualTo(Long number)
Is numeric property greater or equal to given number?


greaterOrEqualTo

CompleteCondition greaterOrEqualTo(Integer number)
Is numeric property greater or equal to given number?


lessOrEqualTo

CompleteCondition lessOrEqualTo(Double number)
Is numeric property less or equal to given number?


lessOrEqualTo

CompleteCondition lessOrEqualTo(Long number)
Is numeric property less or equal to given number?


lessOrEqualTo

CompleteCondition lessOrEqualTo(Integer number)
Is numeric property less or equal to given number?


after

CompleteCondition after(Date date)
Is date property after (greater than) given date?


before

CompleteCondition before(Date date)
Is date property before (less than) given date?


notBefore

CompleteCondition notBefore(Date date)
Is date property not before (greater or equal to) given date?


notAfter

CompleteCondition notAfter(Date date)
Is date property not after (less or equal to) given date?


after

CompleteCondition after(Duration distanceFromNow)
Is date property after (greater than) date distant from now by given period of time?


before

CompleteCondition before(Duration distanceFromNow)
Is date property before (less than) date distant from now by given period of time?


notAfter

CompleteCondition notAfter(Duration distanceFromNow)
Is date property not after (less or equal to) date distant from now by given period of time?


notBefore

CompleteCondition notBefore(Duration distanceFromNow)
Is date property not before (greater or equal to) date distant from now by given period of time?


lexicalAfter

CompleteCondition lexicalAfter(String literal)
Is textual property lexically after (greater than) given literal?


lexicalBefore

CompleteCondition lexicalBefore(String literal)
Is textual property lexically before (less than) given literal?


lexicalNotBefore

CompleteCondition lexicalNotBefore(String literal)
Is textual property lexically not before (greater or equal to) given literal?


lexicalNotAfter

CompleteCondition lexicalNotAfter(String literal)
Is textual property lexically not after (less or equal to) given literal?


comparesTo

CompleteCondition comparesTo(ConditionType op,
                             String value)
Generic


comparesTo

CompleteCondition comparesTo(ConditionType op,
                             Double value)
Generic


comparesTo

CompleteCondition comparesTo(ConditionType op,
                             Long value)
Generic


comparesTo

CompleteCondition comparesTo(ConditionType op,
                             Integer value)
Generic


comparesTo

CompleteCondition comparesTo(ConditionType op,
                             Date value)
Generic


comparesTo

CompleteCondition comparesTo(ConditionType op,
                             Duration value)
Generic


Apache CXF API

Apache CXF