Interface ITokenizer

  • All Known Implementing Classes:
    Tokenizer

    public interface ITokenizer
    • Method Detail

      • isEof

        boolean isEof()
      • currentChar

        char currentChar()
      • getResource

        java.lang.Object getResource()
      • currentLineNumber

        int currentLineNumber()
      • currentColumnNumber

        int currentColumnNumber()
      • isAtChar

        boolean isAtChar​(char c)
      • isNextChar

        boolean isNextChar​(char c)
                    throws java.io.IOException
        Throws:
        java.io.IOException
      • peekNextChar

        char peekNextChar()
                   throws java.io.IOException
        Throws:
        java.io.IOException
      • peekCurrentNChars

        java.lang.String peekCurrentNChars​(int n)
                                    throws java.io.IOException
        Throws:
        java.io.IOException
      • acceptChar

        boolean acceptChar​(char c)
                    throws java.io.IOException
        Throws:
        java.io.IOException
      • readNextChar

        char readNextChar()
                   throws java.io.IOException
        Throws:
        java.io.IOException
      • readUnquotedAttributeValue

        java.lang.String readUnquotedAttributeValue()
                                             throws java.io.IOException
        Throws:
        java.io.IOException
      • skipWhiteSpace

        boolean skipWhiteSpace()
                        throws java.io.IOException
        Throws:
        java.io.IOException
      • skipSpacesAndTabs

        boolean skipSpacesAndTabs()
                           throws java.io.IOException
        Throws:
        java.io.IOException
      • isAtWhiteSpace

        boolean isAtWhiteSpace()
      • isAtSpaceOrTab

        boolean isAtSpaceOrTab()