Uses of Interface
io.helidon.common.http.Parameters
-
-
Uses of Parameters in io.helidon.common.http
Subinterfaces of Parameters in io.helidon.common.http Modifier and Type Interface Description interfaceFormParamsProvides access to any form parameters present in the request entity.interfaceHeadersExtendsParametersinterface by adding methods convenient for HTTP headers.Classes in io.helidon.common.http that implement Parameters Modifier and Type Class Description classReadOnlyParametersAn immutable implementation ofParameters.Methods in io.helidon.common.http that return Parameters Modifier and Type Method Description ParametersHttpRequest. queryParams()Returns query parameters.static ParametersParameters. toUnmodifiableParameters(Parameters parameters)Returns an unmodifiable view.Methods in io.helidon.common.http with parameters of type Parameters Modifier and Type Method Description voidParameters. addAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance adding values to existing associations (optional operation).voidReadOnlyParameters. addAll(Parameters parameters)voidParameters. putAll(Parameters parameters)Copies all of the mappings from the specifiedparametersto this instance replacing values of existing associations (optional operation).voidReadOnlyParameters. putAll(Parameters parameters)static ParametersParameters. toUnmodifiableParameters(Parameters parameters)Returns an unmodifiable view.Constructors in io.helidon.common.http with parameters of type Parameters Constructor Description ReadOnlyParameters(Parameters parameters)Creates an instance from provided multi-map.
-