Interface Selector<R,​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 interface Selector<R,​T>
    • Method Detail

      • identity

        static <T> Selector<T,​T> identity()
      • select

        javax.persistence.criteria.Selection<? extends T> select​(javax.persistence.criteria.Root<R> root,
                                                                 javax.persistence.criteria.CriteriaBuilder cb)