public final class IdentUtils extends Object
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isIdentifierPart(int codePoint)
Determines if the specified character may be part of an ECMAScript identifier as other than
the first character.
|
static boolean |
isIdentifierStart(int codePoint)
Determines if the specified character is permissible as the first character in a ECMAScript
identifier.
|
public static boolean isIdentifierStart(int codePoint)
codePoint - the character to be testedtrue if the character may start an ECMAScript identifier, returns
false otherwise.public static boolean isIdentifierPart(int codePoint)
codePoint - the character to be testedtrue if the character may be part of an ECMAScript identifier, returns
false otherwise.