We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Query.Builder
1 parent e165986 commit a20c442Copy full SHA for a20c442
src/main/java/ch/usi/si/seart/treesitter/Query.java
@@ -94,6 +94,14 @@ public Builder toBuilder() {
94
return builder().language(language).patterns(patterns);
95
}
96
97
+ /**
98
+ * Facilitates the construction of Query instances.
99
+ * It allows for the step-by-step creation of these objects
100
+ * by providing methods for setting individual attributes.
101
+ * Input validations are performed at each build step.
102
+ *
103
+ * @since 1.7.0
104
+ */
105
@FieldDefaults(level = AccessLevel.PRIVATE)
106
@NoArgsConstructor(access = AccessLevel.PRIVATE)
107
public static class Builder {
0 commit comments