Interface FormParams

All Superinterfaces:
Iterable<Map.Entry<String,List<String>>>, Parameters

public interface FormParams extends Parameters
Provides access to any form parameters present in the request entity.
  • Method Details

    • create

      @Deprecated(since="2.0.2") static FormParams create(String paramAssignments, MediaType mediaType)
      Deprecated.
      use builder() instead or register io.helidon.media.common.FormParamsBodyReader
      Creates a new FormParams instance using the provided assignment string and media type.
      Parameters:
      paramAssignments - String containing the parameter assignments, formatted according to the media type specified (& separator for URL-encoded, NL for text/plain)
      mediaType - MediaType for which the parameter conversion is occurring
      Returns:
      the new FormParams instance
    • builder

      static FormParams.Builder builder()
      Creates a new FormParams.Builder of FormParams instance.
      Returns:
      builder instance