Interface CompleteCondition
-
- All Known Implementing Classes:
FiqlSearchConditionBuilder.Builder
public interface CompleteConditionPart of fluent interface ofSearchConditionBuilder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PartialConditionand()Conjunct current expression with anotherPropertyand(String name)shortcut for and().is()PartialConditionor()Disjunct current expression with anotherPropertyor(String name)shortcut for or().is()Stringquery()Finalize condition construction and build search condition query.CompleteConditionwrap()Wraps the current expression in ()
-
-
-
Method Detail
-
and
PartialCondition and()
Conjunct current expression with another
-
or
PartialCondition or()
Disjunct current expression with another
-
wrap
CompleteCondition wrap()
Wraps the current expression in ()
-
query
String query()
Finalize condition construction and build search condition query.
-
-