Class ClientForm

  • All Implemented Interfaces:
    io.vertx.lang.rx.RxDelegate
    Direct Known Subclasses:
    ClientMultipartForm

    public class ClientForm
    extends Object
    implements io.vertx.lang.rx.RxDelegate
    A form: a container for attributes.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Field Detail

      • __TYPE_ARG

        public static final io.vertx.lang.rx.TypeArg<ClientForm> __TYPE_ARG
    • Constructor Detail

      • ClientForm

        public ClientForm​(ClientForm delegate)
      • ClientForm

        public ClientForm​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getDelegate

        public ClientForm getDelegate()
        Specified by:
        getDelegate in interface io.vertx.lang.rx.RxDelegate
      • form

        public static ClientForm form()
        Returns:
        a blank form
      • form

        public static ClientForm form​(MultiMap initial)
        Parameters:
        initial - the initial content of the form
        Returns:
        a form populated after the initial multimap
      • charset

        public ClientForm charset​(String charset)
        Set the charset to use when encoding the form. The default charset is StandardCharsets.
        Parameters:
        charset - the charset to use
        Returns:
        a reference to this, so the API can be used fluently
      • charset

        public ClientForm charset​(Charset charset)
        Set the charset to use when encoding the form. The default charset is StandardCharsets.
        Parameters:
        charset - the charset to use
        Returns:
        a reference to this, so the API can be used fluently
      • charset

        public Charset charset()
        Returns:
        the charset to use when encoding the form