Interface Case.Mapper

Enclosing class:
Case
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Case.Mapper
The function that that takes a character and returns a tokenizer associated with the character.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(char c)
    Returns the tokenizer with which the specified character is associated, or null if there is no tokenizer associated with the character.
  • Method Details

    • get

      Tokenizer get(char c)
      Returns the tokenizer with which the specified character is associated, or null if there is no tokenizer associated with the character.
      Parameters:
      c - The character.
      Returns:
      The tokenizer associated with the character c, or null if there is no tokenizer associated with c.