Package com.mta.tehreer.unicode
Class BidiPair
java.lang.Object
com.mta.tehreer.unicode.BidiPair
A
BidiPair
object represents a pair of a unicode code point at a specific index in
source text.-
Field Summary
Modifier and TypeFieldDescriptionint
The code point of actual character in source text.int
The index of actual character in source text.int
The code point of character forming a pair with actual character. -
Constructor Summary
-
Method Summary
-
Field Details
-
charIndex
public int charIndexThe index of actual character in source text. -
actualCodePoint
public int actualCodePointThe code point of actual character in source text. -
pairingCodePoint
public int pairingCodePointThe code point of character forming a pair with actual character.
-
-
Constructor Details
-
BidiPair
public BidiPair(int charIndex, int actualCodePoint, int pairingCodePoint) Constructs a bidi pair object.- Parameters:
charIndex
- The index of actual character.actualCodePoint
- The code point of actual character.pairingCodePoint
- The code point of pairing character.
-
BidiPair
public BidiPair()Constructs a bidi pair object.
-
-
Method Details