Index

A B C D E F G I M N O P R S T V W 
All Classes and Interfaces|All Packages|Serialized Form

A

and(String) - Method in class io.quarkus.panache.common.Sort
Adds a sort column, in ascending order.
and(String, Sort.Direction) - Method in class io.quarkus.panache.common.Sort
Adds a sort column, in the given order.
and(String, Sort.Direction, Sort.NullPrecedence) - Method in class io.quarkus.panache.common.Sort
Adds a sort column, in the given order and null precedence.
and(String, Sort.NullPrecedence) - Method in class io.quarkus.panache.common.Sort
Adds a sort column, in the given null precedence.
and(String, Object) - Method in class io.quarkus.panache.common.Parameters
Deprecated.
andIgnoreCase(String) - Method in class io.quarkus.panache.common.Sort
Adds a sort column, in ascending order, case-insensitive.
andIgnoreCase(String, Sort.Direction) - Method in class io.quarkus.panache.common.Sort
Adds a sort column, in the given order, case-insensitive.
ascending() - Method in class io.quarkus.panache.common.Sort
Sets the order to ascending for all current sort columns.
ascending(String...) - Static method in class io.quarkus.panache.common.Sort
Sort by the given columns, in ascending order.
Ascending - Enum constant in enum class io.quarkus.panache.common.Sort.Direction
Sort in ascending order (the default).
ascendingIgnoreCase(String...) - Static method in class io.quarkus.panache.common.Sort
Sort by the given columns, in ascending order, case-insensitive.

B

by(String) - Static method in class io.quarkus.panache.common.Sort
Sort by the given column, in ascending order.
by(String...) - Static method in class io.quarkus.panache.common.Sort
Sort by the given columns, in ascending order.
by(String, Sort.Direction) - Static method in class io.quarkus.panache.common.Sort
Sort by the given column, in the given order.
by(String, Sort.Direction, Sort.NullPrecedence) - Static method in class io.quarkus.panache.common.Sort
Sort by the given column, in the given order and in the given null precedence.
by(String, Sort.NullPrecedence) - Static method in class io.quarkus.panache.common.Sort
Sort by the given column, in the given order and in the given null precedence.

C

callSuperMethod() - Element in annotation interface io.quarkus.panache.common.impl.GenerateBridge
Set to true to delegate to the super method instead of JpaOperations.
Column(String) - Constructor for class io.quarkus.panache.common.Sort.Column
 
Column(String, Sort.Direction) - Constructor for class io.quarkus.panache.common.Sort.Column
 
Column(String, Sort.Direction, Sort.NullPrecedence) - Constructor for class io.quarkus.panache.common.Sort.Column
 
Column(String, Sort.Direction, Sort.NullPrecedence, Sort.Case) - Constructor for class io.quarkus.panache.common.Sort.Column
 

D

descending() - Method in class io.quarkus.panache.common.Sort
Sets the order to descending for all current sort columns.
descending(String...) - Static method in class io.quarkus.panache.common.Sort
Sort by the given columns, in descending order.
Descending - Enum constant in enum class io.quarkus.panache.common.Sort.Direction
Sort in descending order (opposite to the default).
descendingIgnoreCase(String...) - Static method in class io.quarkus.panache.common.Sort
Sort by the given columns, in descending order, case-insensitive.
direction(Sort.Direction) - Method in class io.quarkus.panache.common.Sort
Sets the order to all current sort columns.
disableEscaping() - Method in class io.quarkus.panache.common.Sort
Disables escaping of column names with a backticks during HQL Order By clause generation

E

empty() - Static method in class io.quarkus.panache.common.Sort
Creates an Empty Sort instance.

F

first() - Method in class io.quarkus.panache.common.Page
Returns a new page with the first page index (0) and the same size, or this page if it is the first page.

G

GenerateBridge - Annotation Interface in io.quarkus.panache.common.impl
 
getColumns() - Method in class io.quarkus.panache.common.Sort
Get the sort columns
getDirection() - Method in class io.quarkus.panache.common.Sort.Column
 
getLastIndex() - Method in class io.quarkus.panache.common.Range
 
getName() - Method in class io.quarkus.panache.common.Sort.Column
 
getNullPrecedence() - Method in class io.quarkus.panache.common.Sort.Column
 
getStartIndex() - Method in class io.quarkus.panache.common.Range
 

I

IGNORE - Enum constant in enum class io.quarkus.panache.common.Sort.Case
Sort while ignoring case
ignoreCase() - Method in class io.quarkus.panache.common.Sort
Sets case-insensitive sorting for all current sort columns.
ignoreEntityTypeParam() - Element in annotation interface io.quarkus.panache.common.impl.GenerateBridge
Set to false when the implemented method should not receive the entity type as one of its parameters
index - Variable in class io.quarkus.panache.common.Page
The current page index (0-based).
index(int) - Method in class io.quarkus.panache.common.Page
Returns a new page at the given page index and the same size, or this page if the page index is the same.
io.quarkus.panache.common - package io.quarkus.panache.common
 
io.quarkus.panache.common.exception - package io.quarkus.panache.common.exception
 
io.quarkus.panache.common.impl - package io.quarkus.panache.common.impl
 
isEscapingEnabled() - Method in class io.quarkus.panache.common.Sort
 
isIgnoreCase() - Method in class io.quarkus.panache.common.Sort.Column
 

M

map() - Method in class io.quarkus.panache.common.Parameters
Deprecated.

N

next() - Method in class io.quarkus.panache.common.Page
Returns a new page with the next page index and the same size.
nullPrecedence(Sort.NullPrecedence) - Method in class io.quarkus.panache.common.Sort
Sets null precedence for all current sort columns.
NULLS_FIRST - Enum constant in enum class io.quarkus.panache.common.Sort.NullPrecedence
Sort by the null columns listed first in the resulting query.
NULLS_LAST - Enum constant in enum class io.quarkus.panache.common.Sort.NullPrecedence
Sort by the null columns listed last in the resulting query.
nullsFirst() - Method in class io.quarkus.panache.common.Sort
Sets null precedence to NULLS FIRST for all current sort columns.
nullsLast() - Method in class io.quarkus.panache.common.Sort
Sets null precedence to NULLS LAST for all current sort columns.

O

of(int, int) - Static method in class io.quarkus.panache.common.Page
Builds a page of the given index and size.
of(int, int) - Static method in class io.quarkus.panache.common.Range
Creates a new range
ofSize(int) - Static method in class io.quarkus.panache.common.Page
Builds a page of the given size.

P

Page - Class in io.quarkus.panache.common
Utility class to represent paging information.
Page(int) - Constructor for class io.quarkus.panache.common.Page
Builds a page of the given size.
Page(int, int) - Constructor for class io.quarkus.panache.common.Page
Builds a page of the given index and size.
PanacheQueryException - Exception Class in io.quarkus.panache.common.exception
 
PanacheQueryException(String) - Constructor for exception class io.quarkus.panache.common.exception.PanacheQueryException
 
PanacheQueryException(String, Throwable) - Constructor for exception class io.quarkus.panache.common.exception.PanacheQueryException
 
Parameters - Class in io.quarkus.panache.common
Deprecated.
Parameters() - Constructor for class io.quarkus.panache.common.Parameters
Deprecated.
 
previous() - Method in class io.quarkus.panache.common.Page
Returns a new page with the previous page index and the same size, or this page if it is the first page.

R

Range - Class in io.quarkus.panache.common
Utility class to represent ranging information.
Range(int, int) - Constructor for class io.quarkus.panache.common.Range
Creates a new range
RESPECT - Enum constant in enum class io.quarkus.panache.common.Sort.Case
Sort by respecting case (default)
respectCase() - Method in class io.quarkus.panache.common.Sort
Sets case-sensitive sorting for all current sort columns.

S

setCase(Sort.Case) - Method in class io.quarkus.panache.common.Sort.Column
 
setCase(Sort.Case) - Method in class io.quarkus.panache.common.Sort
Sets case-insensitive sorting for all current sort columns.
setDirection(Sort.Direction) - Method in class io.quarkus.panache.common.Sort.Column
 
setIgnoreCase() - Method in class io.quarkus.panache.common.Sort.Column
 
setName(String) - Method in class io.quarkus.panache.common.Sort.Column
 
setNullPrecedence(Sort.NullPrecedence) - Method in class io.quarkus.panache.common.Sort.Column
 
size - Variable in class io.quarkus.panache.common.Page
The current page size;
Sort - Class in io.quarkus.panache.common
Utility class to build and represent SQL sorting specifications.
Sort.Case - Enum Class in io.quarkus.panache.common
Represents the case instructions
Sort.Column - Class in io.quarkus.panache.common
 
Sort.Direction - Enum Class in io.quarkus.panache.common
Represents an SQL direction in which to sort results.
Sort.NullPrecedence - Enum Class in io.quarkus.panache.common
Represents the order of null columns.

T

targetReturnTypeErased() - Element in annotation interface io.quarkus.panache.common.impl.GenerateBridge
Set to true if the corresponding JpaOperations method returns Object but the bridge should return a more specific type.

V

valueOf(String) - Static method in enum class io.quarkus.panache.common.Sort.Case
Returns the enum constant of this class with the specified name.
valueOf(String) - Static method in enum class io.quarkus.panache.common.Sort.Direction
Returns the enum constant of this class with the specified name.
valueOf(String) - Static method in enum class io.quarkus.panache.common.Sort.NullPrecedence
Returns the enum constant of this class with the specified name.
values() - Static method in enum class io.quarkus.panache.common.Sort.Case
Returns an array containing the constants of this enum class, in the order they are declared.
values() - Static method in enum class io.quarkus.panache.common.Sort.Direction
Returns an array containing the constants of this enum class, in the order they are declared.
values() - Static method in enum class io.quarkus.panache.common.Sort.NullPrecedence
Returns an array containing the constants of this enum class, in the order they are declared.

W

with(String, Object) - Static method in class io.quarkus.panache.common.Parameters
Deprecated.
A B C D E F G I M N O P R S T V W 
All Classes and Interfaces|All Packages|Serialized Form