Interface ChangeQueryBuilder.ChangeOperandFactory

All Known Subinterfaces:
ChangeQueryBuilder.ChangeHasOperandFactory, ChangeQueryBuilder.ChangeIsOperandFactory
Enclosing class:
ChangeQueryBuilder

public static interface ChangeQueryBuilder.ChangeOperandFactory
Converts a operand (operator value) passed to an operator into a Predicate.

Register a ChangeOperandFactory in a config Module like this (note, for an example we are using the has predicate, when other predicate plugin operands are created they can be registered in a similar manner):

bind(ChangeHasOperandFactory.class) .annotatedWith(Exports.named("your has operand")) .to(YourClass.class);