Skip to content

Commit 7ca340f

Browse files
committed
docs: enhance hazelcast templat
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
1 parent 97b3a97 commit 7ca340f

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

jnosql-hazelcast/src/main/java/org/eclipse/jnosql/databases/hazelcast/mapping/HazelcastTemplate.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@
2323
/**
2424
* A specialized {@link KeyValueTemplate} for Hazelcast,
2525
* providing methods to execute queries using SQL-like expressions and predicates.
26-
* <p>
2726
* This template facilitates querying key-value structures stored in a Hazelcast instance.
2827
* It supports both SQL-like queries with named parameters and Hazelcast-specific predicates.
29-
* </p>
3028
*
3129
* Example usage:
3230
* <pre>
@@ -51,9 +49,7 @@ public interface HazelcastTemplate extends KeyValueTemplate {
5149

5250
/**
5351
* Executes a Hazelcast query using SQL-like syntax.
54-
* <p>
5552
* The query should follow Hazelcast's SQL-like query syntax for key-value stores.
56-
* </p>
5753
*
5854
* @param <T> the entity type
5955
* @param query the SQL-like query string
@@ -64,14 +60,12 @@ public interface HazelcastTemplate extends KeyValueTemplate {
6460

6561
/**
6662
* Executes a Hazelcast query with named parameters.
67-
* <p>
6863
* Example usage:
6964
* <pre>
7065
* {@code
7166
* Collection<Movie> movies = hazelcastTemplate.sql("name = :name", Map.of("name", "The Matrix"));
7267
* }
7368
* </pre>
74-
* </p>
7569
*
7670
* @param <T> the entity type
7771
* @param query the SQL-like query string
@@ -83,10 +77,8 @@ public interface HazelcastTemplate extends KeyValueTemplate {
8377

8478
/**
8579
* Executes a Hazelcast query using a {@link Predicate}.
86-
* <p>
8780
* The predicate-based approach is useful for filtering key-value pairs
8881
* based on specific criteria.
89-
* </p>
9082
*
9183
* @param <K> the key type
9284
* @param <V> the value type

0 commit comments

Comments
 (0)