Uses of Class
org.springframework.data.jpa.domain.JpaSort.Path
Packages that use JpaSort.Path
Package
Description
JPA specific support classes to implement domain classes.
-
Uses of JpaSort.Path in org.springframework.data.jpa.domain
Methods in org.springframework.data.jpa.domain that return JpaSort.PathModifier and TypeMethodDescription<A extends jakarta.persistence.metamodel.Attribute<S,U>, U>
JpaSort.Path<S,U> JpaSort.Path.dot(A attribute) Collects the givenAttributeand returning a newJpaSort.Pathpointing to the attribute type.<P extends jakarta.persistence.metamodel.PluralAttribute<S,?, U>, U>
JpaSort.Path<S,U> JpaSort.Path.dot(P attribute) Collects the givenPluralAttributeand returning a newJpaSort.Pathpointing to the attribute type.static <A extends jakarta.persistence.metamodel.Attribute<T,S>, T, S>
JpaSort.Path<T,S> JpaSort.path(A attribute) Creates a newJpaSort.Pathfor the givenAttribute.static <P extends jakarta.persistence.metamodel.PluralAttribute<T,?, S>, T, S>
JpaSort.Path<T,S> JpaSort.path(P attribute) Creates a newJpaSort.Pathfor the givenPluralAttribute.Methods in org.springframework.data.jpa.domain with parameters of type JpaSort.PathModifier and TypeMethodDescriptionJpaSort.and(Sort.Direction direction, JpaSort.Path<?, ?>... paths) Returns a newJpaSortwith the given sorting criteria added to the current one.static JpaSortJpaSort.of(Sort.Direction direction, JpaSort.Path<?, ?>... paths) Creates a newJpaSortfor the given direction andJpaSort.Paths.static JpaSortJpaSort.of(JpaSort.Path<?, ?>... paths) Creates a newJpaSortinstance with the givenJpaSort.Paths.Constructors in org.springframework.data.jpa.domain with parameters of type JpaSort.PathModifierConstructorDescriptionJpaSort(Sort.Direction direction, JpaSort.Path<?, ?>... paths) Deprecated.JpaSort(JpaSort.Path<?, ?>... paths) Deprecated.since 2.3, use {@link JpaSort#of(Path...))} instead.
JpaSort.of(Direction, Path...)instead.