and() - Method in interface com.github.rutledgepaulv.qbuilders.conditions.Condition
Prepare to append another condition onto the current node in the condition tree
in such a way that both the preceeding condition AND the next condition
specified must be met in order to match an object.
or() - Method in interface com.github.rutledgepaulv.qbuilders.conditions.Condition
Prepare to append another condition onto the current node in the condition tree
in such a way that both the preceeding condition OR the next condition
specified must be met in order to match an object.
Given this logically complete condition, execute a node visitor against the
underlying condition tree in order to build a query or predicate against which
objects can be queried / tested.
Given this logically complete condition, execute a node visitor against the
underlying condition tree in order to build a query or predicate against which
objects can be queried / tested.
R
RE - Static variable in class com.github.rutledgepaulv.qbuilders.operators.ComparisonOperator
self() - Method in class com.github.rutledgepaulv.qbuilders.builders.QBuilder
Since we have delegate classes that extend this class but not its potential end-user imposed subclasses
we instead pass the original instance of whatever the final QBuilder class is around as
a delegate which each view calls for any operations instead of calling 'this' thereby providing type safe
compatibility with extensions.
self() - Method in class com.github.rutledgepaulv.qbuilders.delegates.virtual.Delegate