Skip to content

Commit

Permalink
update javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Sep 9, 2024
1 parent c9a5516 commit ab22ab3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,6 @@ public interface AerospikeOperations {
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
*/
<T> void deleteByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, @Nullable Query query);

Expand All @@ -452,8 +450,6 @@ public interface AerospikeOperations {
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param setName Set name to use. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
*/
<T> void deleteByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, String setName, @Nullable Query query);

Expand Down Expand Up @@ -1088,8 +1084,7 @@ <T, S> List<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return True if matching records exist, otherwise false.
*/
<T> boolean existsByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, @Nullable Query query);

Expand All @@ -1101,8 +1096,7 @@ <T, S> List<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param setName Set name to use. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return True if matching records exist, otherwise false.
*/
boolean existsByIdsUsingQuery(Collection<?> ids, String setName, @Nullable Query query);

Expand Down Expand Up @@ -1148,8 +1142,7 @@ <T, S> List<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return quantity of matching records.
*/
<T> long countByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, @Nullable Query query);

Expand All @@ -1161,8 +1154,7 @@ <T, S> List<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param setName Set name to use. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return quantity of matching records.
*/
long countByIdsUsingQuery(Collection<?> ids, String setName, @Nullable Query query);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,6 @@ public interface ReactiveAerospikeOperations {
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
*/
<T> Mono<Void> deleteByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, @Nullable Query query);

Expand All @@ -437,8 +435,6 @@ public interface ReactiveAerospikeOperations {
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param setName Set name to use. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
*/
<T> Mono<Void> deleteByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, String setName,
@Nullable Query query);
Expand Down Expand Up @@ -1069,8 +1065,7 @@ <T, S> Flux<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return True if matching records exist, otherwise false.
*/
<T> Mono<Boolean> existsByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, @Nullable Query query);

Expand All @@ -1082,8 +1077,7 @@ <T, S> Flux<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param setName Set name to use. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return True if matching records exist, otherwise false.
*/
Mono<Boolean> existsByIdsUsingQuery(Collection<?> ids, String setName, @Nullable Query query);

Expand Down Expand Up @@ -1129,8 +1123,7 @@ <T, S> Flux<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param entityClass The class to extract set name from. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return Quantity of matching queries.
*/
<T> Mono<Long> countByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, @Nullable Query query);

Expand All @@ -1142,8 +1135,7 @@ <T, S> Flux<?> findByIdsUsingQuery(Collection<?> ids, Class<T> entityClass, Clas
* @param ids The ids of the documents to find. Must not be {@literal null}.
* @param setName Set name to use. Must not be {@literal null}.
* @param query The {@link Query} to filter results. Optional argument (null if no filtering required).
* @return The matching records mapped to targetClass's type if provided (otherwise to entityClass's type), or an
* empty list if no documents found.
* @return Quantity of matching queries.
*/
Mono<Long> countByIdsUsingQuery(Collection<?> ids, String setName, @Nullable Query query);

Expand Down

0 comments on commit ab22ab3

Please sign in to comment.