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
@@ -25,6 +25,7 @@
25
25
importjava.util.function.Function;
26
26
importjava.util.function.Supplier;
27
27
importjava.util.function.UnaryOperator;
28
+
importjava.util.stream.Collectors;
28
29
29
30
importorg.springframework.lang.NonNull;
30
31
importorg.springframework.lang.Nullable;
@@ -42,7 +43,7 @@
42
43
/**
43
44
* Functional builder for Cassandra {@link BuildableQuery statements}. Statements are built by applying
44
45
* {@link UnaryOperator builder functions} that get applied when {@link #build() building} the actual
45
-
* {@link SimpleStatement statement}. The {@code StatementBuilder} provides a mutable container for statement creation
46
+
* {@link SimpleStatement statement}. The {@link StatementBuilder} provides a mutable container for statement creation
46
47
* allowing a functional declaration of actions that are necessary to build a statement. This class helps building CQL
47
48
* statements as a {@link BuildableQuery} classes are typically immutable and require return value tracking across
48
49
* methods that want to apply modifications to a statement.
@@ -289,13 +290,13 @@ public <T> T ifBoundOrInline(Function<Bindings, T> bindingFunction, Supplier<T>
0 commit comments