Interface CriteriaBehavior.BeforeVisit

  • Enclosing class:
    CriteriaBehavior<T>
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public static interface CriteriaBehavior.BeforeVisit
    • Method Detail

      • accept

        void accept​(CriteriaBuilder b,
                    Object v,
                    org.apache.cxf.jaxrs.ext.search.ConditionType c,
                    boolean w)
        Interface that specifies the action to take for a given query term.
        Parameters:
        b - CriteriaBuilder that is being used to construct the query
        v - The value of the query term
        c - The condition type of the query term
        w - Boolean indicating whether the term is a wildcard (that should use LIKE instead of = in a query, for instance)