Interface CharacterPattern

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static class  CharacterPattern.Matching
      This immutable class describes a matching result.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      CharacterPattern.Matching match​(java.util.List<java.lang.Character> seq)
      Given a list of characters, determine whether it exactly matches any known KeyStroke, and whether a longer sequence can possibly match.
    • Method Detail

      • match

        CharacterPattern.Matching match​(java.util.List<java.lang.Character> seq)
        Given a list of characters, determine whether it exactly matches any known KeyStroke, and whether a longer sequence can possibly match.
        Parameters:
        seq - of characters to check
        Returns:
        see Matching