Uses of Class
io.quarkus.hibernate.orm.panache.PanacheEntityBase
Packages that use PanacheEntityBase
-
Uses of PanacheEntityBase in io.quarkus.hibernate.orm.panache
Subclasses of PanacheEntityBase in io.quarkus.hibernate.orm.panacheModifier and TypeClassDescriptionclassRepresents an entity with a generated ID fieldPanacheEntity.idof typeLong.Methods in io.quarkus.hibernate.orm.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>
TFind an entity of this type by ID.static <T extends PanacheEntityBase>
TFind an entity of this type by ID and lock it.static <T extends PanacheEntityBase>
Optional<T> PanacheEntityBase.findByIdOptional(Object id) Find an entity of this type by ID.static <T extends PanacheEntityBase>
Optional<T> PanacheEntityBase.findByIdOptional(Object id, jakarta.persistence.LockModeType lockModeType) Find an entity of this type by ID.static <T extends PanacheEntityBase>
List<T> Find entities of this type by their IDs.default <T extends PanacheEntityBase>
List<T> Find entities of this type by their IDs.static <T extends PanacheEntityBase>
List<T> Find entities matching a query, with named parameters.static <T extends PanacheEntityBase>
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>
List<T> Find entities matching a query and the given sort options, with optional indexed parameters.static <T extends PanacheEntityBase>
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>
List<T> Find entities matching a query, with optional indexed parameters.static <T extends PanacheEntityBase>
List<T> Find entities matching a query, with named parameters.static <T extends PanacheEntityBase>
List<T> PanacheEntityBase.listAll()Find all entities of this type.static <T extends PanacheEntityBase>
List<T> PanacheEntityBase.listAll(io.quarkus.panache.common.Sort sort) Find all entities of this type, in the given order.static <T extends PanacheEntityBase>
Stream<T> Find entities matching a query, with named parameters.static <T extends PanacheEntityBase>
Stream<T> PanacheEntityBase.stream(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>
Stream<T> Find entities matching a query and the given sort options, with optional indexed parameters.static <T extends PanacheEntityBase>
Stream<T> PanacheEntityBase.stream(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>
Stream<T> Find entities matching a query, with optional indexed parameters.static <T extends PanacheEntityBase>
Stream<T> Find entities matching a query, with named parameters.static <T extends PanacheEntityBase>
Stream<T> PanacheEntityBase.streamAll()Find all entities of this type.static <T extends PanacheEntityBase>
Stream<T> PanacheEntityBase.streamAll(io.quarkus.panache.common.Sort sort) Find all entities of this type, in the given order.