Package | Description |
---|---|
io.quarkus.panache.common |
Modifier and Type | Method and Description |
---|---|
Sort |
Sort.and(String name)
Adds a sort column, in ascending order.
|
Sort |
Sort.and(String name,
Sort.Direction direction)
Adds a sort column, in the given order.
|
Sort |
Sort.ascending()
Sets the order to ascending for all current sort columns.
|
static Sort |
Sort.ascending(String... columns)
Sort by the given columns, in ascending order.
|
static Sort |
Sort.by(String... columns)
Sort by the given columns, in ascending order.
|
static Sort |
Sort.by(String column)
Sort by the given column, in ascending order.
|
static Sort |
Sort.by(String column,
Sort.Direction direction)
Sort by the given column, in the given order.
|
Sort |
Sort.descending()
Sets the order to descending for all current sort columns.
|
static Sort |
Sort.descending(String... columns)
Sort by the given columns, in descending order.
|
Sort |
Sort.direction(Sort.Direction direction)
Sets the order to all current sort columns.
|
Copyright © 2019 JBoss by Red Hat. All rights reserved.