Class StringNormalizingReader

java.lang.Object
java.io.Reader
org.apache.batik.util.io.NormalizingReader
org.apache.batik.util.io.StringNormalizingReader
All Implemented Interfaces:
Closeable, AutoCloseable, Readable

public class StringNormalizingReader extends NormalizingReader
This class represents a NormalizingReader which handles Strings.
Version:
$Id: StringNormalizingReader.java 1733416 2016-03-03 07:07:13Z gadams $
  • Field Details

    • string

      protected String string
      The characters.
    • length

      protected int length
      The length of the string.
    • next

      protected int next
      The index of the next character.
    • line

      protected int line
      The current line in the stream.
    • column

      protected int column
      The current column in the stream.
  • Constructor Details

    • StringNormalizingReader

      public StringNormalizingReader(String s)
      Creates a new StringNormalizingReader.
      Parameters:
      s - The string to read.
  • Method Details