Uses of Interface
io.vertx.uritemplate.Variables
Packages that use Variables
Package
Description
-
Uses of Variables in io.vertx.ext.web.client
Methods in io.vertx.ext.web.client that return VariablesModifier and TypeMethodDescriptionHttpRequest.templateParams()Return the current request URI template parameters. -
Uses of Variables in io.vertx.reactivex.uritemplate
Methods in io.vertx.reactivex.uritemplate that return VariablesMethods in io.vertx.reactivex.uritemplate with parameters of type VariablesConstructors in io.vertx.reactivex.uritemplate with parameters of type Variables -
Uses of Variables in io.vertx.rxjava3.uritemplate
Methods in io.vertx.rxjava3.uritemplate that return VariablesMethods in io.vertx.rxjava3.uritemplate with parameters of type VariablesConstructors in io.vertx.rxjava3.uritemplate with parameters of type Variables -
Uses of Variables in io.vertx.uritemplate
Methods in io.vertx.uritemplate that return VariablesModifier and TypeMethodDescriptionVariables.addAll(JsonObject json) Populates with a JSON object:nullare conservedJsonArrayis converted toList<String>JsonObjectis converted toMap<String, String>any other value is converted to a string Note that nested JSON elements are converted to a string, so { "user": { "first_name": "John", "last_name": "Doe", "address" : { "city": "Paris", etc... } } } flattens the JSON "address" to the string "{\"city\":\"Paris\",etc...}".Variables.clear()Set a single variable.Set a list variable.Set a map variable.default VariablesVariables.setAll(JsonObject json) LikeVariables.addAll(JsonObject)but overwrites previous variables.static VariablesVariables.variables()static VariablesVariables.variables(JsonObject json) Create an instance populated from a JSON object:nullare conservedJsonArrayis converted toList<String>JsonObjectis converted toMap<String, String>any other value is converted to a string Note that nested JSON elements are converted to a string, so { "user": { "first_name": "John", "last_name": "Doe", "address" : { "city": "Paris", etc... } } } flattens the JSON "address" to the string "{\"city\":\"Paris\",etc...}".Methods in io.vertx.uritemplate with parameters of type VariablesModifier and TypeMethodDescriptionUriTemplate.expandToString(Variables variables) Expand this template to a string.UriTemplate.expandToString(Variables variables, ExpandOptions options) Expand this template to a string.