Uses of Interface
io.helidon.common.http.Parameters
-
Uses of Parameters in io.helidon.common.http
Subinterfaces of Parameters in io.helidon.common.httpModifier and TypeInterfaceDescriptioninterfaceProvides access to any form parameters present in the request entity.interfaceExtendsParametersinterface by adding methods convenient for HTTP headers.Classes in io.helidon.common.http that implement ParametersModifier and TypeClassDescriptionclassclassAMap-basedParametersimplementation with keys and immutableListof values that needs to be copied on each write.classAn immutable implementation ofHeaders.classAn immutable implementation ofParameters.Methods in io.helidon.common.http that return ParametersModifier and TypeMethodDescriptionAdds specified values to association with the specified key (optional operation).Adds specified values to association with the specified key (optional operation).Parameters.addAll(Parameters parameters) Copies all of the mappings from the specifiedparametersto this instance adding values to existing associations (optional operation).static ParametersUriComponent.decodeQuery(String query, boolean decode) Decode the query component of a URI.static ParametersUriComponent.decodeQuery(String query, boolean decodeNames, boolean decodeValues) Decode the query component of a URI.Parameters.putAll(Parameters parameters) Copies all of the mappings from the specifiedparametersto this instance replacing values of existing associations (optional operation).HttpRequest.queryParams()Returns query parameters.static ParametersParameters.toUnmodifiableParameters(Parameters parameters) Returns an unmodifiable view.Methods in io.helidon.common.http with parameters of type ParametersModifier and TypeMethodDescriptionHashParameters.addAll(Parameters parameters) Parameters.addAll(Parameters parameters) Copies all of the mappings from the specifiedparametersto this instance adding values to existing associations (optional operation).ReadOnlyParameters.addAll(Parameters parameters) static HashHeadersHashHeaders.concat(Parameters... parameters) Concatenates the contents of the specifiedParametersinto a newHashHeadersinstance.static HashParametersHashParameters.concat(Parameters... parameters) Creates new instance ofHashParametersas a concatenation of provided parameters.static HashHeadersHashHeaders.create(Parameters initialContent) Creates a new instance populated with the specifiedParameterscontents.static HashParametersHashParameters.create(Parameters initialContent) Creates a new instanceHashParametersfrom provided data.static ReadOnlyHeadersReadOnlyHeaders.create(Parameters initialContent) Deprecated, for removal: This API element is subject to removal in a future version.HashParameters.putAll(Parameters parameters) Parameters.putAll(Parameters parameters) Copies all of the mappings from the specifiedparametersto this instance replacing values of existing associations (optional operation).ReadOnlyParameters.putAll(Parameters parameters) static ParametersParameters.toUnmodifiableParameters(Parameters parameters) Returns an unmodifiable view.Method parameters in io.helidon.common.http with type arguments of type ParametersModifier and TypeMethodDescriptionstatic HashHeadersHashHeaders.concat(Iterable<Parameters> initialContent) Concatenates the specified contents into a newHashHeadersinstance.static HashParametersHashParameters.concat(Iterable<Parameters> parameters) Creates new instance ofHashParametersas a concatenation of provided parameters.Constructors in io.helidon.common.http with parameters of type ParametersModifierConstructorDescriptionprotectedHashParameters(Parameters initialContent) Creates a new instance from provided data.protectedReadOnlyHeaders(Parameters parameters) Returns an immutable deep copy of the providedParametersinstance.ReadOnlyParameters(Parameters parameters) Creates an instance from provided multi-map.
ReadOnlyHeaders.create(Headers)instead, passingHeadersinstead ofParameters.