Class FormDataPart


  • public class FormDataPart
    extends Object
    A form data part of a MultipartForm.

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

    • Constructor Detail

      • FormDataPart

        public FormDataPart​(io.vertx.ext.web.multipart.FormDataPart delegate)
      • FormDataPart

        public FormDataPart​(Object delegate)
    • Method Detail

      • getDelegate

        public io.vertx.ext.web.multipart.FormDataPart getDelegate()
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • 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​(io.vertx.ext.web.multipart.FormDataPart arg)