Interface ICharacterTool

All Known Implementing Classes:
CharacterTool

public interface ICharacterTool
The ICharacterTool provides methods to handle chars.
Author:
Silvan Wyss
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    isDigit(char character)
     
    boolean
    isHexadecimalDigit(char character)
     
  • Method Details

    • isDigit

      boolean isDigit(char character)
      Parameters:
      character -
      Returns:
      true if the given character is a digit, false otherwise.
    • isHexadecimalDigit

      boolean isHexadecimalDigit(char character)
      Parameters:
      character -
      Returns:
      true if the given character is a hexadecimal digit, false otherwise.