public final class Tables extends Object
| Modifier and Type | Method and Description |
|---|---|
static boolean |
bidirectionalPropertyL(int codePoint)
Characters with bidirectional property "L".
|
static boolean |
bidirectionalPropertyRorAL(int codePoint)
Characters with bidirectional property "R" or "AL".
|
static boolean |
mapToNothing(int codePoint)
Commonly mapped to nothing.
|
static int[] |
mapWithNfkc(int codePoint)
Mapping for case-folding used with NFKC.
|
static int[] |
mapWithoutNormalization(int codePoint)
Mapping for case-folding used with no normalization.
|
static boolean |
prohibitionAsciiControl(int codePoint)
ASCII control characters.
|
static boolean |
prohibitionAsciiSpace(int codePoint)
ASCII space characters.
|
static boolean |
prohibitionChangeDisplayProperties(int codePoint)
Change display properties or are deprecated.
|
static boolean |
prohibitionInappropriateCanonicalRepresentation(int codePoint)
Inappropriate for canonical representation.
|
static boolean |
prohibitionInappropriatePlainText(int codePoint)
Inappropriate for plain text.
|
static boolean |
prohibitionNonAsciiControl(int codePoint)
Non-ASCII control characters.
|
static boolean |
prohibitionNonAsciiSpace(int codePoint)
Non-ASCII space characters.
|
static boolean |
prohibitionNonCharacterCodePoints(int codePoint)
Non-character code points.
|
static boolean |
prohibitionPrivateUse(int codePoint)
Private use.
|
static boolean |
prohibitionSurrogateCodes(int codePoint)
Surrogate codes.
|
static boolean |
prohibitionTaggingCharacters(int codePoint)
Tagging characters.
|
static boolean |
unassignedCodePoints(int codePoint)
Unassigned code points in Unicode 3.2.
|
public static boolean unassignedCodePoints(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is
"Unassigned code points in Unicode 3.2".public static boolean mapToNothing(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "Commonly mapped to nothing".public static int[] mapWithNfkc(int codePoint)
codePoint - the character (Unicode code point) to be mapped.codePoint.public static int[] mapWithoutNormalization(int codePoint)
codePoint - the character (Unicode code point) to be mapped.codePoint.public static boolean prohibitionAsciiSpace(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "ASCII space characters".public static boolean prohibitionNonAsciiSpace(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "Non-ASCII space characters".public static boolean prohibitionAsciiControl(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "ASCII control characters".public static boolean prohibitionNonAsciiControl(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "Non-ASCII control characters".public static boolean prohibitionPrivateUse(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "Private use".public static boolean prohibitionNonCharacterCodePoints(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "Non-character code points".public static boolean prohibitionSurrogateCodes(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "Surrogate codes".public static boolean prohibitionInappropriatePlainText(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is
"Inappropriate for plain text".public static boolean prohibitionInappropriateCanonicalRepresentation(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is
"Inappropriate for canonical representation".public static boolean prohibitionChangeDisplayProperties(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is
"Change display properties or are deprecated".public static boolean prohibitionTaggingCharacters(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is "Tagging characters".public static boolean bidirectionalPropertyRorAL(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is
"Characters with bidirectional property R or AL".public static boolean bidirectionalPropertyL(int codePoint)
codePoint - the character (Unicode code point) to be tested.true if the given codePoint is
"Characters with bidirectional property L".Copyright © 2019–2025 OnGres, Inc. All rights reserved.