Package org.htmlunit

Class FormEncodingType

  • All Implemented Interfaces:
    java.io.Serializable

    public final class FormEncodingType
    extends java.lang.Object
    implements java.io.Serializable
    A collection of constants that represent the various ways a form can be encoded when submitted.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private FormEncodingType​(java.lang.String name)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static FormEncodingType getInstance​(java.lang.String name)
      Returns the constant that matches the specified name.
      java.lang.String getName()
      Returns the name of this encoding type.
      java.lang.String toString()
      Returns a string representation of this object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • URL_ENCODED

        public static final FormEncodingType URL_ENCODED
        URL-encoded form encoding.
      • MULTIPART

        public static final FormEncodingType MULTIPART
        Multipart form encoding (used to be a constant in HttpClient but it was deprecated with no alternative).
      • name_

        private final java.lang.String name_
    • Constructor Detail

      • FormEncodingType

        private FormEncodingType​(java.lang.String name)
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns the name of this encoding type.
        Returns:
        the name of this encoding type
      • getInstance

        public static FormEncodingType getInstance​(java.lang.String name)
        Returns the constant that matches the specified name.
        Parameters:
        name - the name to search by
        Returns:
        the constant corresponding to the specified name, URL_ENCODED if none match.
      • toString

        public java.lang.String toString()
        Returns a string representation of this object.
        Overrides:
        toString in class java.lang.Object
        Returns:
        a string representation of this object