Uses of Class
io.quarkus.mongodb.panache.PanacheMongoEntityBase
Packages that use PanacheMongoEntityBase
-
Uses of PanacheMongoEntityBase in io.quarkus.mongodb.panache
Subclasses of PanacheMongoEntityBase in io.quarkus.mongodb.panacheModifier and TypeClassDescriptionclassRepresents an entity with a generated ID fieldPanacheMongoEntity.idof typeObjectId.Methods in io.quarkus.mongodb.panache with type parameters of type PanacheMongoEntityBaseModifier and TypeMethodDescriptionstatic <T extends PanacheMongoEntityBase>
PanacheQuery<T> Find entities using a query, with named parameters.static <T extends PanacheMongoEntityBase>
PanacheQuery<T> PanacheMongoEntityBase.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 PanacheMongoEntityBase>
PanacheQuery<T> Find entities using a query and the given sort options, with optional indexed parameters.static <T extends PanacheMongoEntityBase>
PanacheQuery<T> PanacheMongoEntityBase.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 PanacheMongoEntityBase>
PanacheQuery<T> Find entities using a query, with optional indexed parameters.static <T extends PanacheMongoEntityBase>
PanacheQuery<T> Find entities using a query, with named parameters.static <T extends PanacheMongoEntityBase>
PanacheQuery<T> PanacheMongoEntityBase.find(org.bson.conversions.Bson query) Find entities using a BSON query.static <T extends PanacheMongoEntityBase>
PanacheQuery<T> PanacheMongoEntityBase.find(org.bson.conversions.Bson query, org.bson.conversions.Bson sort) Find entities using a BSON query and a BSON sort.static <T extends PanacheMongoEntityBase>
PanacheQuery<T> PanacheMongoEntityBase.findAll()Find all entities of this type.static <T extends PanacheMongoEntityBase>
PanacheQuery<T> PanacheMongoEntityBase.findAll(io.quarkus.panache.common.Sort sort) Find all entities of this type, in the given order.static <T extends PanacheMongoEntityBase>
TFind an entity of this type by ID.static <T extends PanacheMongoEntityBase>
Optional<T> PanacheMongoEntityBase.findByIdOptional(Object id) Find an entity of this type by ID.static <T extends PanacheMongoEntityBase>
List<T> Find entities of this type by their IDs.static <T extends PanacheMongoEntityBase>
List<T> Find entities matching a query, with named parameters.static <T extends PanacheMongoEntityBase>
List<T> PanacheMongoEntityBase.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 PanacheMongoEntityBase>
List<T> Find entities matching a query and the given sort options, with optional indexed parameters.static <T extends PanacheMongoEntityBase>
List<T> PanacheMongoEntityBase.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 PanacheMongoEntityBase>
List<T> Find entities matching a query, with optional indexed parameters.static <T extends PanacheMongoEntityBase>
List<T> Find entities matching a query, with named parameters.static <T extends PanacheMongoEntityBase>
List<T> PanacheMongoEntityBase.list(org.bson.conversions.Bson query) Find entities using a BSON query.static <T extends PanacheMongoEntityBase>
List<T> PanacheMongoEntityBase.list(org.bson.conversions.Bson query, org.bson.conversions.Bson sort) Find entities using a BSON query and a BSON sort.static <T extends PanacheMongoEntityBase>
List<T> PanacheMongoEntityBase.listAll()Find all entities of this type.static <T extends PanacheMongoEntityBase>
List<T> PanacheMongoEntityBase.listAll(io.quarkus.panache.common.Sort sort) Find all entities of this type, in the given order.static <T extends PanacheMongoEntityBase>
com.mongodb.client.MongoCollection<T> PanacheMongoEntityBase.mongoCollection()Allow to access the underlying Mongo Collection.static <T extends PanacheMongoEntityBase>
Stream<T> Find entities matching a query, with named parameters.static <T extends PanacheMongoEntityBase>
Stream<T> PanacheMongoEntityBase.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 PanacheMongoEntityBase>
Stream<T> Find entities matching a query and the given sort options, with optional indexed parameters.static <T extends PanacheMongoEntityBase>
Stream<T> PanacheMongoEntityBase.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 PanacheMongoEntityBase>
Stream<T> Find entities matching a query, with optional indexed parameters.static <T extends PanacheMongoEntityBase>
Stream<T> Find entities matching a query, with named parameters.static <T extends PanacheMongoEntityBase>
Stream<T> PanacheMongoEntityBase.stream(org.bson.conversions.Bson query) Find entities using a BSON query.static <T extends PanacheMongoEntityBase>
Stream<T> PanacheMongoEntityBase.stream(org.bson.conversions.Bson query, org.bson.conversions.Bson sort) Find entities using a BSON query and a BSON sort.static <T extends PanacheMongoEntityBase>
Stream<T> PanacheMongoEntityBase.streamAll()Find all entities of this type.static <T extends PanacheMongoEntityBase>
Stream<T> PanacheMongoEntityBase.streamAll(io.quarkus.panache.common.Sort sort) Find all entities of this type, in the given order.