FileDocCategorySizeDatePackage
CharacterDataPrivateUse.javaAPI DocJava SE 5 API2566Fri Aug 26 16:47:26 BST 2005java.lang

CharacterDataPrivateUse

public class CharacterDataPrivateUse extends Object
The CharacterData class encapsulates the large tables found in Java.lang.Character.

Fields Summary
Constructors Summary
Methods Summary
static intdigit(int ch, int radix)

		return -1;
    
static bytegetDirectionality(int ch)

        int offset = ch & 0xFFFF;
        if (offset == 0xFFFE || offset == 0xFFFF) {
            return Character.DIRECTIONALITY_UNDEFINED;
        } else {
            return Character.DIRECTIONALITY_LEFT_TO_RIGHT;
        }
    
static intgetNumericValue(int ch)

		return -1;
    
static intgetProperties(int ch)

        return 0;
    
static intgetType(int ch)

        int offset = ch & 0xFFFF;
        if (offset == 0xFFFE || offset == 0xFFFF) {
            return Character.UNASSIGNED;
        } else {
            return Character.PRIVATE_USE;
        }
    
static booleanisDefined(int ch)

        int offset = ch & 0xFFFF;
        if (offset == 0xFFFE || offset == 0xFFFF) {
            return false;
        } else {
            return true;
        }
    
static booleanisDigit(int ch)

		return false;
    
static booleanisIdentifierIgnorable(int ch)

		return false;
    
static booleanisJavaIdentifierPart(int ch)

		return false;
    
static booleanisJavaIdentifierStart(int ch)

		return false;
    
static booleanisLetter(int ch)

		return false;
    
static booleanisLetterOrDigit(int ch)

		return false;
    
static booleanisLowerCase(int ch)

		return false;
    
static booleanisMirrored(int ch)

		return false;
    
static booleanisSpaceChar(int ch)

		return false;
    
static booleanisTitleCase(int ch)

		return false;
    
static booleanisUnicodeIdentifierPart(int ch)

		return false;
    
static booleanisUnicodeIdentifierStart(int ch)

		return false;
    
static booleanisUpperCase(int ch)

		return false;
    
static booleanisWhitespace(int ch)

		return false;
    
static inttoLowerCase(int ch)

		return ch;
    
static inttoTitleCase(int ch)

		return ch;
    
static inttoUpperCase(int ch)

		return ch;