Class FormDataPart

java.lang.Object
io.vertx.rxjava3.ext.web.multipart.FormDataPart
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate

public class FormDataPart extends Object implements io.vertx.lang.rx.RxDelegate
A form data part of a MultipartForm.

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

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<FormDataPart> __TYPE_ARG
  • Constructor Details

    • FormDataPart

      public FormDataPart(FormDataPart delegate)
    • FormDataPart

      public FormDataPart(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

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

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

      public String name()
      Returns:
      the name
    • isAttribute

      public boolean isAttribute()
      Returns:
      true when this part is an attribute
    • isFileUpload

      public boolean isFileUpload()
      Returns:
      true when this part is a file upload
    • value

      public String value()
      Returns:
      the value when the part for a form attribute otherwise null
    • filename

      public String filename()
      Returns:
      the filename when this part is a file upload otherwise null
    • pathname

      public String pathname()
      Returns:
      the pathname when this part is a file upload created with a pathname otherwise null
    • content

      public Buffer content()
      Returns:
      the content when this part is a file upload created with a buffer otherwise null
    • mediaType

      public String mediaType()
      Returns:
      the media type when this part is a file upload otherwise null
    • isText

      public Boolean isText()
      Returns:
      whether the file upload is text or binary when this part is a file upload otherwise null
    • newInstance

      public static FormDataPart newInstance(FormDataPart arg)