Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

java.lang
Class Character.UnassignedCharacters  view Character.UnassignedCharacters download Character.UnassignedCharacters.java

java.lang.Object
  extended byjava.lang.Character.UnassignedCharacters
Direct Known Subclasses:
Character.PrivateUseCharacters
Enclosing class:
Character

private static class Character.UnassignedCharacters
extends Object

A class to encompass all the properties of code points that are currently undefined in the Unicode standard.


Constructor Summary
private Character.UnassignedCharacters()
           
 
Method Summary
(package private) static int digit(int cp, int radix)
          Returns the numeric value for the unassigned characters.
(package private) static byte getDirectionality(int cp)
          Returns the Unicode directionality property for unassigned characters.
(package private) static int getNumericValue(int cp)
          Returns -1, the numeric value for unassigned Unicode characters.
(package private) static int getType(int cp)
          Returns UNASSIGNED, the type of unassigned Unicode characters.
(package private) static boolean isDefined(int cp)
          Returns false to indiciate that the character is not defined in the Unicode standard.
(package private) static boolean isDigit(int cp)
          Returns false to indicate that the character is not a digit.
(package private) static boolean isIdentifierIgnorable(int cp)
          Returns false to indicate that the character cannot be ignored within an identifier
(package private) static boolean isJavaIdentiferStart(int cp)
          Returns false to indicate that the character cannot be start a Java identifier.
(package private) static boolean isJavaIdentifierPart(int cp)
          Returns false to indicate that the character cannot be part of a Java identifier.
(package private) static boolean isLetter(int cp)
          Returns false to indicate that the character is not a letter.
(package private) static boolean isLetterOrDigit(int cp)
          Returns false to indicate that the character cannot is neither a letter nor a digit.
(package private) static boolean isLowerCase(int cp)
          Returns false to indicate that the character is not a lowercase letter.
(package private) static boolean isMirrored(int cp)
          Returns false to indicate that the character cannot is not mirrored.
(package private) static boolean isSpaceChar(int cp)
          Returns false to indicate that the character is not a space character.
(package private) static boolean isTitleCase(int cp)
          Returns false to indicate that the character it not a titlecase letter.
(package private) static boolean isUnicodeIdentifierPart(int cp)
          Returns false to indicate that the character cannot be part of a Unicode identifier.
(package private) static boolean isUnicodeIdentifierStart(int cp)
          Returns false to indicate that the character cannot start a Unicode identifier.
(package private) static boolean isUpperCase(int cp)
          Returns false to indicate that the character is not an uppercase letter.
(package private) static boolean isWhiteSpace(int cp)
          Returns false to indicate that the character is not a whitespace character.
(package private) static int toLowerCase(int cp)
          Returns cp to indicate this character has no lowercase conversion.
(package private) static int toTitleCase(int cp)
          Returns cp to indicate this character has no titlecase conversion.
(package private) static int toUpperCase(int cp)
          Returns cp to indicate this character has no uppercase conversion.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Character.UnassignedCharacters

private Character.UnassignedCharacters()
Method Detail

digit

static int digit(int cp,
                 int radix)
Returns the numeric value for the unassigned characters.


getDirectionality

static byte getDirectionality(int cp)
Returns the Unicode directionality property for unassigned characters.


getNumericValue

static int getNumericValue(int cp)
Returns -1, the numeric value for unassigned Unicode characters.


getType

static int getType(int cp)
Returns UNASSIGNED, the type of unassigned Unicode characters.


isDefined

static boolean isDefined(int cp)
Returns false to indiciate that the character is not defined in the Unicode standard.


isDigit

static boolean isDigit(int cp)
Returns false to indicate that the character is not a digit.


isIdentifierIgnorable

static boolean isIdentifierIgnorable(int cp)
Returns false to indicate that the character cannot be ignored within an identifier


isJavaIdentifierPart

static boolean isJavaIdentifierPart(int cp)
Returns false to indicate that the character cannot be part of a Java identifier.


isJavaIdentiferStart

static boolean isJavaIdentiferStart(int cp)
Returns false to indicate that the character cannot be start a Java identifier.


isLetter

static boolean isLetter(int cp)
Returns false to indicate that the character is not a letter.


isLetterOrDigit

static boolean isLetterOrDigit(int cp)
Returns false to indicate that the character cannot is neither a letter nor a digit.


isLowerCase

static boolean isLowerCase(int cp)
Returns false to indicate that the character is not a lowercase letter.


isMirrored

static boolean isMirrored(int cp)
Returns false to indicate that the character cannot is not mirrored.


isSpaceChar

static boolean isSpaceChar(int cp)
Returns false to indicate that the character is not a space character.


isTitleCase

static boolean isTitleCase(int cp)
Returns false to indicate that the character it not a titlecase letter.


isUnicodeIdentifierPart

static boolean isUnicodeIdentifierPart(int cp)
Returns false to indicate that the character cannot be part of a Unicode identifier.


isUnicodeIdentifierStart

static boolean isUnicodeIdentifierStart(int cp)
Returns false to indicate that the character cannot start a Unicode identifier.


isUpperCase

static boolean isUpperCase(int cp)
Returns false to indicate that the character is not an uppercase letter.


isWhiteSpace

static boolean isWhiteSpace(int cp)
Returns false to indicate that the character is not a whitespace character.


toLowerCase

static int toLowerCase(int cp)
Returns cp to indicate this character has no lowercase conversion.


toTitleCase

static int toTitleCase(int cp)
Returns cp to indicate this character has no titlecase conversion.


toUpperCase

static int toUpperCase(int cp)
Returns cp to indicate this character has no uppercase conversion.