Class PersistentPropertyOrder<T>
- java.lang.Object
-
- io.micronaut.data.model.jpa.criteria.impl.PersistentPropertyOrder<T>
-
- Type Parameters:
T
- The property type
- All Implemented Interfaces:
jakarta.persistence.criteria.Order
@Internal public final class PersistentPropertyOrder<T> extends java.lang.Object implements jakarta.persistence.criteria.Order
The implementation ofOrder
.- Since:
- 3.2
- Author:
- Denis Stepanov
-
-
Constructor Summary
Constructors Constructor Description PersistentPropertyOrder(PersistentPropertyPath<T> persistentPropertyPath, boolean ascending)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.persistence.criteria.Expression<?>
getExpression()
boolean
isAscending()
jakarta.persistence.criteria.Order
reverse()
-
-
-
Constructor Detail
-
PersistentPropertyOrder
public PersistentPropertyOrder(PersistentPropertyPath<T> persistentPropertyPath, boolean ascending)
-
-
Method Detail
-
reverse
public jakarta.persistence.criteria.Order reverse()
- Specified by:
reverse
in interfacejakarta.persistence.criteria.Order
-
isAscending
public boolean isAscending()
- Specified by:
isAscending
in interfacejakarta.persistence.criteria.Order
-
getExpression
public jakarta.persistence.criteria.Expression<?> getExpression()
- Specified by:
getExpression
in interfacejakarta.persistence.criteria.Order
-
-