Interface Property
-
- All Known Implementing Classes:
FiqlSearchConditionBuilder.Builder
public interface PropertyPart of fluent interface ofSearchConditionBuilder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompleteConditionafter(Date date)Is date property after (greater than) given date?CompleteConditionafter(Duration distanceFromNow)Is date property after (greater than) date distant from now by given period of time?CompleteConditionbefore(Date date)Is date property before (less than) given date?CompleteConditionbefore(Duration distanceFromNow)Is date property before (less than) date distant from now by given period of time?CompleteConditioncomparesTo(ConditionType op, Double value)GenericCompleteConditioncomparesTo(ConditionType op, Integer value)GenericCompleteConditioncomparesTo(ConditionType op, Long value)GenericCompleteConditioncomparesTo(ConditionType op, String value)GenericCompleteConditioncomparesTo(ConditionType op, Date value)GenericCompleteConditioncomparesTo(ConditionType op, Duration value)GenericCompleteConditionequalTo(Double number, Double... moreValues)Is numeric property equal to given double number?CompleteConditionequalTo(Integer number, Integer... moreValues)Is numeric property equal to given long number?CompleteConditionequalTo(Long number, Long... moreValues)Is numeric property equal to given long number?CompleteConditionequalTo(String value, String... moreValues)Is textual property equal to given literal or matching given pattern?CompleteConditionequalTo(Date date, Date... moreValues)Is date property same as given date?CompleteConditionequalTo(Duration distanceFromNow, Duration... moreValues)Is date property same as date distant from now by given period of time?CompleteConditiongreaterOrEqualTo(Double number)Is numeric property greater or equal to given number?CompleteConditiongreaterOrEqualTo(Integer number)Is numeric property greater or equal to given number?CompleteConditiongreaterOrEqualTo(Long number)Is numeric property greater or equal to given number?CompleteConditiongreaterThan(Double number)Is numeric property greater than given number?CompleteConditiongreaterThan(Integer number)Is numeric property greater than given number?CompleteConditiongreaterThan(Long number)Is numeric property greater than given number?CompleteConditionlessOrEqualTo(Double number)Is numeric property less or equal to given number?CompleteConditionlessOrEqualTo(Integer number)Is numeric property less or equal to given number?CompleteConditionlessOrEqualTo(Long number)Is numeric property less or equal to given number?CompleteConditionlessThan(Double number)Is numeric property less than given number?CompleteConditionlessThan(Integer number)Is numeric property less than given number?CompleteConditionlessThan(Long number)Is numeric property less than given number?CompleteConditionlexicalAfter(String literal)Is textual property lexically after (greater than) given literal?CompleteConditionlexicalBefore(String literal)Is textual property lexically before (less than) given literal?CompleteConditionlexicalNotAfter(String literal)Is textual property lexically not after (less or equal to) given literal?CompleteConditionlexicalNotBefore(String literal)Is textual property lexically not before (greater or equal to) given literal?CompleteConditionnotAfter(Date date)Is date property not after (less or equal to) given date?CompleteConditionnotAfter(Duration distanceFromNow)Is date property not after (less or equal to) date distant from now by given period of time?CompleteConditionnotBefore(Date date)Is date property not before (greater or equal to) given date?CompleteConditionnotBefore(Duration distanceFromNow)Is date property not before (greater or equal to) date distant from now by given period of time?CompleteConditionnotEqualTo(Double number)Is numeric property different than given double number?CompleteConditionnotEqualTo(Integer number)Is numeric property different than given int number?CompleteConditionnotEqualTo(Long number)Is numeric property different than given long number?CompleteConditionnotEqualTo(String literalOrPattern)Is textual property different than given literal or not matching given pattern?CompleteConditionnotEqualTo(Date date)Is date property different than given date?CompleteConditionnotEqualTo(Duration distanceFromNow)Is date property different than date distant from now by given period of time?
-
-
-
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
-
-