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

Quick Search    Search Deep

java.lang
Class Character.PrivateUseCharacters  view Character.PrivateUseCharacters download Character.PrivateUseCharacters.java

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

private static class Character.PrivateUseCharacters
extends Character.UnassignedCharacters

A class to encompass all the properties of characters in the private use blocks in the Unicode standard. This class extends UnassignedCharacters because the return type from getType() is different.


Constructor Summary
private Character.PrivateUseCharacters()
           
 
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)
          Gets the directionality for the character cp.
(package private) static int getNumericValue(int cp)
          Returns -1, the numeric value for unassigned Unicode characters.
(package private) static int getType(int cp)
          Returns the type of the character cp.
(package private) static boolean isDefined(int cp)
          Returns true if the character cp is defined.
(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.PrivateUseCharacters

private Character.PrivateUseCharacters()
Method Detail

getType

static int getType(int cp)
Returns the type of the character cp.


isDefined

static boolean isDefined(int cp)
Returns true if the character cp is defined.


getDirectionality

static byte getDirectionality(int cp)
Gets the directionality for the character cp.


digit

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


getNumericValue

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


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.