Character.isJavaIdentifierPart
Class Overview | Class Members |
This Package |
All Packages
public static boolean isJavaIdentifierPart( char ch )
Parameters
- ch
- the character to be tested.
Returns
true if the character may be part of a Unicode identifier;
false otherwise.
Description
Determines if the specified character may be part of a Java
identifier as other than the first character.
A character may be part of a Java identifier if and only if
it is one of the following:
- a letter
- a currency symbol (such as "$")
- a connecting punctuation character (such as "_").
- a digit
- a numeric letter (such as a Roman numeral character)
- a combining mark
- a non-spacing mark
- an ignorable control character
See Also
isIdentifierIgnorable, isJavaIdentifierStart, isLetterOrDigit, isUnicodeIdentifierPart