All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.marschall.lineparser.NonDecodingLineReader Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package com.github.marschall.lineparser;

import java.nio.ByteBuffer;

/**
 * Does not decode lines, works only for Latin-1 compatible encodings.
 */
final class NonDecodingLineReader implements LineReader {

  /**
   * {@inheritDoc}
   */
  @Override
  public CharSequence readLine(ByteBuffer buffer, int start, int length) {
    return new ByteBufferCharSequence(buffer, start, length);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy