We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d200f2f commit 8eaef07Copy full SHA for 8eaef07
src/main/java/com/marklogic/client/document/ServerTransform.java
@@ -46,6 +46,17 @@ public String getName() {
46
return name;
47
}
48
49
+ /**
50
+ * Appends a value to the list for a parameter and returns this instance for
51
+ * method chaining.
52
+ * @param name the parameter
53
+ * @param value the value to add to the list
54
+ */
55
+ public ServerTransform addParameter(String name, String value) {
56
+ add(name, value);
57
+ return this;
58
+ }
59
+
60
/**
61
* Merges the transform and its parameters with other parameters
62
* of the request.
0 commit comments