Interface StringDecoder

All Superinterfaces:
Decoder
All Known Implementing Classes:
BCodec, QCodec, QuotedPrintableCodec, URLCodec

public interface StringDecoder
extends Decoder
Decodes a String into a String.
Version:
$Id: StringDecoder.java,v 1.9 2004/02/29 04:08:31 tobrien Exp $
Author:
Apache Software Foundation
  • Method Summary

    Modifier and Type Method Description
    String decode​(String pString)
    Decodes a String and returns a String.

    Methods inherited from interface org.apache.commons.codec.Decoder

    decode
  • Method Details

    • decode

      String decode​(String pString) throws DecoderException
      Decodes a String and returns a String.
      Parameters:
      pString - a String to encode
      Returns:
      the encoded String
      Throws:
      DecoderException - thrown if there is an error conidition during the Encoding process.