Class URLEncoderImpl

    • Constructor Summary

      Constructors 
      Constructor Description
      URLEncoderImpl()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String decode​(java.lang.String input)
      Given a previously encoded string, returns the original input.
      java.lang.String encode​(java.lang.String input)
      Given an input value containing any characters, returns the input string, or an encoded version of the string (as outlined above).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • encode

        public java.lang.String encode​(java.lang.String input)
        Description copied from interface: URLEncoder
        Given an input value containing any characters, returns the input string, or an encoded version of the string (as outlined above).
        Specified by:
        encode in interface URLEncoder
        Parameters:
        input - string to be encoded, which may be null
        Returns:
        encoded version of input
      • decode

        public java.lang.String decode​(java.lang.String input)
        Description copied from interface: URLEncoder
        Given a previously encoded string, returns the original input.
        Specified by:
        decode in interface URLEncoder
        Parameters:
        input - encoded string (may not be null)
        Returns:
        decoded input