Skip navigation links
A B C D E F G I J K M N P Q R S U V 

A

add(Sort) - Method in interface jakarta.nosql.mapping.Sorts
Appends a Sort instance
asc(String) - Method in interface jakarta.nosql.mapping.Sorts
Appends a Sort instance of SortType.ASC from the name
AttributeConverter<X,Y> - Interface in jakarta.nosql.mapping
A class that implements this interface can be used to convert entity attribute state into database column representation and back again.

B

bind(String, Object) - Method in interface jakarta.nosql.mapping.PreparedStatement
Binds an argument to a positional parameter.

C

Column - Annotation Type in jakarta.nosql.mapping
Is used to specify a mapped column for a persistent property or field.
Convert - Annotation Type in jakarta.nosql.mapping
This annotation enables the converter resource.
Converters - Interface in jakarta.nosql.mapping
The Converter storage
convertToDatabaseColumn(X) - Method in interface jakarta.nosql.mapping.AttributeConverter
Converts the value stored in the entity attribute into the data representation to be stored in the database.
convertToEntityAttribute(Y) - Method in interface jakarta.nosql.mapping.AttributeConverter
Converts the data stored in the database column into the value to be stored in the entity attribute.
count() - Method in interface jakarta.nosql.mapping.Repository
Returns the number of entities available.
create(Class<T>) - Method in interface jakarta.nosql.mapping.InstanceProducer
Creates an instance from the class

D

Database - Annotation Type in jakarta.nosql.mapping
The database qualifier used on Jakarta NoSQL Mapping such as defines which interpreter will be used on Repository with Database
DatabaseType - Enum in jakarta.nosql.mapping
Defines the database type supported on Jakarta NoSQL Mapping.
deleteById(K) - Method in interface jakarta.nosql.mapping.Repository
Deletes the entity with the given id.
deleteById(Iterable<K>) - Method in interface jakarta.nosql.mapping.Repository
Deletes the entity with the given ids.
desc(String) - Method in interface jakarta.nosql.mapping.Sorts
Appends a Sort instance of SortType.DESC from the name
DynamicQueryException - Exception in jakarta.nosql.mapping
The root exception to dynamic query on Repository
DynamicQueryException(String) - Constructor for exception jakarta.nosql.mapping.DynamicQueryException
Constructs a new runtime exception with the specified detail message.

E

Embeddable - Annotation Type in jakarta.nosql.mapping
Defines an embedded field, that means all elements fields in the class will as converted as one.
Entity - Annotation Type in jakarta.nosql.mapping
Specifies that the class is an entity.
EntityNotFoundException - Exception in jakarta.nosql.mapping
Thrown by the persistence provider when an entity does not exist.
EntityNotFoundException(String) - Constructor for exception jakarta.nosql.mapping.EntityNotFoundException
Constructs a new EntityNotFoundException exception with the specified detail message.
EntityNotFoundException() - Constructor for exception jakarta.nosql.mapping.EntityNotFoundException
Constructs a new EntityNotFoundException exception with null as its detail message.
EntityPostPersit - Interface in jakarta.nosql.mapping
When an entity is either saved or updated it's the first event to fire after the database action.
EntityPrePersist - Interface in jakarta.nosql.mapping
When an entity is either saved or updated it's the first event to fire
existsById(K) - Method in interface jakarta.nosql.mapping.Repository
Returns whether an entity with the given id exists.

F

findById(K) - Method in interface jakarta.nosql.mapping.Repository
Finds an entity given the id
findById(Iterable<K>) - Method in interface jakarta.nosql.mapping.Repository
Finds the entities given ids

G

get(Class<? extends AttributeConverter<X, Y>>) - Method in interface jakarta.nosql.mapping.Converters
Return a new instance from the converter
getContent() - Method in interface jakarta.nosql.mapping.Page
Returns the page content as Stream
getContent(Supplier<C>) - Method in interface jakarta.nosql.mapping.Page
Returns the page content as from collection Factory
getLimit() - Method in interface jakarta.nosql.mapping.Pagination
 
getPageNumber() - Method in interface jakarta.nosql.mapping.Pagination
Returns the page to be returned.
getPageSize() - Method in interface jakarta.nosql.mapping.Pagination
Returns the number of items to be returned.
getPagination() - Method in interface jakarta.nosql.mapping.Page
Returns the Pagination of the current Page
getResult() - Method in interface jakarta.nosql.mapping.PreparedStatement
Executes a query and return the result as Stream
getSingleResult() - Method in interface jakarta.nosql.mapping.PreparedStatement
Returns the result as a single element otherwise it will return an Optional.empty()
getSkip() - Method in interface jakarta.nosql.mapping.Pagination
 
getSorts() - Method in interface jakarta.nosql.mapping.Sorts
 
getValue() - Method in interface jakarta.nosql.mapping.EntityPostPersit
Return the entity whose was either saved or updated
getValue() - Method in interface jakarta.nosql.mapping.EntityPrePersist
Return the entity whose gonna be either saved or updated

I

Id - Annotation Type in jakarta.nosql.mapping
This isn't a mandatory field, but when it define this field is a key.
IdNotFoundException - Exception in jakarta.nosql.mapping
When The Entity is converted to communication layer, this entity must have a field with Id annotation.
IdNotFoundException(String) - Constructor for exception jakarta.nosql.mapping.IdNotFoundException
New exception instance with the exception message
InstanceProducer - Interface in jakarta.nosql.mapping
An instance producer from the Class

J

jakarta.nosql.mapping - package jakarta.nosql.mapping
Defines the core API in mapping level.

K

KEY_NOT_FOUND_EXCEPTION_SUPPLIER - Static variable in exception jakarta.nosql.mapping.IdNotFoundException
 

M

MappedSuperclass - Annotation Type in jakarta.nosql.mapping
Designates a class whose mapping information is applied to the entities that inherit from it.
MappingException - Exception in jakarta.nosql.mapping
The root exception to Mapping layer
MappingException() - Constructor for exception jakarta.nosql.mapping.MappingException
Constructs a new runtime exception with null as its detail message.
MappingException(String) - Constructor for exception jakarta.nosql.mapping.MappingException
Constructs a new runtime exception with the specified detail message.
MappingException(String, Throwable) - Constructor for exception jakarta.nosql.mapping.MappingException
Constructs a new runtime exception with the specified detail message and cause.
MappingException(Throwable) - Constructor for exception jakarta.nosql.mapping.MappingException
Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
MappingException(String, Throwable, boolean, boolean) - Constructor for exception jakarta.nosql.mapping.MappingException
Constructs a new runtime exception with the specified detail message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.

N

newInstance(Class<?>) - Static method in exception jakarta.nosql.mapping.IdNotFoundException
 
next() - Method in interface jakarta.nosql.mapping.Page
Returns the Page requesting the next Page.
next() - Method in interface jakarta.nosql.mapping.Pagination
Returns the Pagination requesting the next Pagination.

P

Page<T> - Interface in jakarta.nosql.mapping
A page is a fixed-length contiguous block of entities from the database.
page(long) - Static method in interface jakarta.nosql.mapping.Pagination
A builder to Pagination, as the first step it defines the page number or the page index that starts from page one.
Pagination - Interface in jakarta.nosql.mapping
Pagination is the process of separating print or digital content into discrete pages.
Pagination.PaginationBuilder - Interface in jakarta.nosql.mapping
The builder of Pagination
Pagination.PaginationBuilderProvider - Interface in jakarta.nosql.mapping
A provider of Pagination.PaginationBuilder where it will create from the Long value
Param - Annotation Type in jakarta.nosql.mapping
Defines a param to a Query query.
PreparedStatement - Interface in jakarta.nosql.mapping
An object that represents a precompiled Query statement.

Q

Query - Annotation Type in jakarta.nosql.mapping
To run Query in Repository interface

R

remove(Sort) - Method in interface jakarta.nosql.mapping.Sorts
Removes a Sort at Sorts
Repository<T,K> - Interface in jakarta.nosql.mapping
Interface to generic CRUD operations on a repository for a specific type.

S

save(S) - Method in interface jakarta.nosql.mapping.Repository
Saves entity
save(Iterable<S>) - Method in interface jakarta.nosql.mapping.Repository
Saves entity each NoSQL vendor might replace to a more appropriate one.
size(long) - Method in interface jakarta.nosql.mapping.Pagination.PaginationBuilder
Defines the size of a pagination
Sorts - Interface in jakarta.nosql.mapping
This instance represents a group of one or more Sort instances.
sorts() - Static method in interface jakarta.nosql.mapping.Sorts
Creates a new instance of Sorts
Sorts.SortsProvider - Interface in jakarta.nosql.mapping
A provider class of Sorts

U

unmodifiable() - Method in interface jakarta.nosql.mapping.Pagination
Returns a pagination instance that is read-only, in other words, that is not allowed to use the Pagination.next().

V

valueOf(String) - Static method in enum jakarta.nosql.mapping.DatabaseType
Returns the enum constant of this type with the specified name.
values() - Static method in enum jakarta.nosql.mapping.DatabaseType
Returns an array containing the constants of this enum type, in the order they are declared.
A B C D E F G I J K M N P Q R S U V 
Skip navigation links

Copyright © 2017–2021 Eclipse Foundation. All rights reserved.