You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-data-cassandra/src/main/java/org/springframework/data/cassandra/core/cql/util/StatementBuilder.java
+10-82
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@
24
24
importjava.util.function.Consumer;
25
25
importjava.util.function.Function;
26
26
importjava.util.function.UnaryOperator;
27
+
importjava.util.stream.Collectors;
27
28
28
29
importorg.springframework.lang.NonNull;
29
30
importorg.springframework.lang.Nullable;
@@ -40,7 +41,7 @@
40
41
/**
41
42
* Functional builder for Cassandra {@link BuildableQuery statements}. Statements are built by applying
42
43
* {@link UnaryOperator builder functions} that get applied when {@link #build() building} the actual
43
-
* {@link SimpleStatement statement}. The {@code StatementBuilder} provides a mutable container for statement creation
44
+
* {@link SimpleStatement statement}. The {@link StatementBuilder} provides a mutable container for statement creation
44
45
* allowing a functional declaration of actions that are necessary to build a statement. This class helps building CQL
45
46
* statements as a {@link BuildableQuery} classes are typically immutable and require return value tracking across
46
47
* methods that want to apply modifications to a statement.
@@ -271,13 +272,13 @@ public boolean canBindCollection() {
0 commit comments