Interface FormBuilder<B,T>

Type Parameters:
B - type of the builder
T - type which the builder builds
All Superinterfaces:
Builder<FormBuilder<B,T>,T>, Supplier<T>
All Known Implementing Classes:
FileFormParams.Builder, FormParams.Builder

public interface FormBuilder<B,T> extends Builder<FormBuilder<B,T>,T>
Form builder interface.
  • Method Summary

    Modifier and Type
    Method
    Description
    add(String name, String... values)
    Add a new values to specific content disposition name.

    Methods inherited from interface io.helidon.common.Builder

    build, get, identity, update
  • Method Details

    • add

      B add(String name, String... values)
      Add a new values to specific content disposition name.
      Parameters:
      name - param name
      values - param values
      Returns:
      updated builder instance