Class StringNormalizingReader

java.lang.Object
java.io.Reader
com.mxgraph.util.svg.NormalizingReader
com.mxgraph.util.svg.StringNormalizingReader
All Implemented Interfaces:
Closeable, AutoCloseable, Readable

public class StringNormalizingReader extends NormalizingReader
This class represents a NormalizingReader which handles Strings.
  • 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