Package org.wiremock.url
Interface Query.Builder
- Enclosing interface:
- Query
public static interface Query.Builder
-
Method Summary
Modifier and TypeMethodDescriptionappend(QueryParamKey key, @Nullable QueryParamValue value, @Nullable QueryParamValue... otherValues) append(QueryParamKey key, List<? extends @Nullable QueryParamValue> values) build()put(QueryParamKey key, @Nullable QueryParamValue value, @Nullable QueryParamValue... otherValues) put(QueryParamKey key, List<? extends @Nullable QueryParamValue> values) remove(QueryParamKey key) remove(QueryParamKey key, @Nullable QueryParamValue value, @Nullable QueryParamValue... otherValues) remove(QueryParamKey key, List<? extends @Nullable QueryParamValue> values)
-
Method Details
-
append
-
append
Query.Builder append(QueryParamKey key, @Nullable QueryParamValue value, @Nullable QueryParamValue... otherValues) -
append
-
put
-
put
Query.Builder put(QueryParamKey key, @Nullable QueryParamValue value, @Nullable QueryParamValue... otherValues) -
put
-
remove
-
remove
-
remove
-
remove
Query.Builder remove(QueryParamKey key, @Nullable QueryParamValue value, @Nullable QueryParamValue... otherValues) -
remove
-
build
Query build()
-