Interface ICharacterTool
- All Known Implementing Classes:
CharacterTool
public interface ICharacterTool
The
ICharacterTool provides methods to handle chars.- Author:
- Silvan Wyss
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisDigit(char character) booleanisHexadecimalDigit(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.
-