Uses of Class
io.quarkus.hibernate.reactive.panache.PanacheEntityBase
Packages that use PanacheEntityBase
-
Uses of PanacheEntityBase in io.quarkus.hibernate.reactive.panache
Subclasses of PanacheEntityBase in io.quarkus.hibernate.reactive.panacheModifier and TypeClassDescriptionclassRepresents an entity with a generated ID fieldPanacheEntity.idof typeLong.Methods in io.quarkus.hibernate.reactive.panache with type parameters of type PanacheEntityBaseModifier and TypeMethodDescriptionstatic <T extends PanacheEntityBase>
PanacheQuery<T>Find entities using a query, with named parameters.static <T extends PanacheEntityBase>
PanacheQuery<T>PanacheEntityBase.find(String query, io.quarkus.panache.common.Sort sort, io.quarkus.panache.common.Parameters params) Find entities using a query and the given sort options, with named parameters.static <T extends PanacheEntityBase>
PanacheQuery<T>Find entities using a query and the given sort options, with optional indexed parameters.static <T extends PanacheEntityBase>
PanacheQuery<T>PanacheEntityBase.find(String query, io.quarkus.panache.common.Sort sort, Map<String, Object> params) Find entities using a query and the given sort options, with named parameters.static <T extends PanacheEntityBase>
PanacheQuery<T>Find entities using a query, with optional indexed parameters.static <T extends PanacheEntityBase>
PanacheQuery<T>Find entities using a query, with named parameters.static <T extends PanacheEntityBase>
PanacheQuery<T>PanacheEntityBase.findAll()Find all entities of this type.static <T extends PanacheEntityBase>
PanacheQuery<T>PanacheEntityBase.findAll(io.quarkus.panache.common.Sort sort) Find all entities of this type, in the given order.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<T>Find an entity of this type by ID.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<T>Find an entity of this type by ID and lock it.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query, with named parameters.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>PanacheEntityBase.list(String query, io.quarkus.panache.common.Sort sort, io.quarkus.panache.common.Parameters params) Find entities matching a query and the given sort options, with named parameters.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query and the given sort options, with optional indexed parameters.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>PanacheEntityBase.list(String query, io.quarkus.panache.common.Sort sort, Map<String, Object> params) Find entities matching a query and the given sort options, with named parameters.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query, with optional indexed parameters.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>Find entities matching a query, with named parameters.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>PanacheEntityBase.listAll()Find all entities of this type.static <T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<List<T>>PanacheEntityBase.listAll(io.quarkus.panache.common.Sort sort) Find all entities of this type, in the given order.<T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<T>PanacheEntityBase.persist()Persist this entity in the database, if not already persisted.<T extends PanacheEntityBase>
io.smallrye.mutiny.Uni<T>PanacheEntityBase.persistAndFlush()Persist this entity in the database, if not already persisted.