Module org.jooq
Package org.jooq.impl

Class CustomCondition

java.lang.Object
org.jooq.impl.CustomCondition
All Implemented Interfaces:
Serializable, Condition, Field<Boolean>, FieldOrConstraint, FieldOrRow, FieldOrRowOrSelect, GroupField, Named, OrderField<Boolean>, QueryPart, QueryPartInternal, SelectField<Boolean>, SelectFieldOrAsterisk, TableElement, Typed<Boolean>

public abstract non-sealed class CustomCondition extends Object
A base class for custom Condition implementations in client code.

Client code may provide proper Condition implementations extending this useful base class. All necessary parts of the Condition interface are already implemented. Only this method needs further implementation: accept(Context).

Refer to that methods' Javadoc for further details about their expected behaviour.

Author:
Lukas Eder
See Also: