Class TextLineEncoder

    • Constructor Detail

      • TextLineEncoder

        public TextLineEncoder()
        Creates a new instance with the current default Charset and LineDelimiter.UNIX delimiter.
      • TextLineEncoder

        public TextLineEncoder​(String delimiter)
        Creates a new instance with the current default Charset and the specified delimiter.
        Parameters:
        delimiter - The line delimiter to use
      • TextLineEncoder

        public TextLineEncoder​(LineDelimiter delimiter)
        Creates a new instance with the current default Charset and the specified delimiter.
        Parameters:
        delimiter - The line delimiter to use
      • TextLineEncoder

        public TextLineEncoder​(Charset charset)
        Creates a new instance with the specified charset and LineDelimiter.UNIX delimiter.
        Parameters:
        charset - The Charset to use
      • TextLineEncoder

        public TextLineEncoder​(Charset charset,
                               String delimiter)
        Creates a new instance with the specified charset and the specified delimiter.
        Parameters:
        charset - The Charset to use
        delimiter - The line delimiter to use
      • TextLineEncoder

        public TextLineEncoder​(Charset charset,
                               LineDelimiter delimiter)
        Creates a new instance with the specified charset and the specified delimiter.
        Parameters:
        charset - The Charset to use
        delimiter - The line delimiter to use