Interface SGMLParser.CharTester

  • All Known Implementing Classes:
    SGMLParser.SpecCharTester
    Enclosing class:
    SGMLParser

    static interface SGMLParser.CharTester
    Provides a single method which decides whether the given character passes a certain test.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean testChar​(char chr)
      Returns whether the given character ch passes the test given by this CharTester.
    • Method Detail

      • testChar

        boolean testChar​(char chr)
        Returns whether the given character ch passes the test given by this CharTester.
        Parameters:
        chr - an int value representing a character.
        Returns:
        the boolean signifying whether the given character ch passes the test given by this CharTester.