Class ReaderDecoder

    • Constructor Detail

      • ReaderDecoder

        public ReaderDecoder()
    • Method Detail

      • willDecode

        public boolean willDecode​(java.lang.String s)
        Description copied from interface: Decoder.Text
        Answer whether the given String can be decoded into an object of type T.
        Specified by:
        willDecode in interface Decoder.Text<java.io.Reader>
        Parameters:
        s - the string being tested for decodability.
        Returns:
        whether this decoder can decoded the supplied string.
      • decode

        public java.io.Reader decode​(java.lang.String s)
                              throws DecodeException
        Description copied from interface: Decoder.Text
        Decode the given String into an object of type T.
        Specified by:
        decode in interface Decoder.Text<java.io.Reader>
        Parameters:
        s - string to be decoded.
        Returns:
        the decoded message as an object of type T
        Throws:
        DecodeException - If the provided string cannot be decoded to type T