Class CharTrie
java.lang.Object
org.graalvm.shadowed.com.ibm.icu.impl.Trie
org.graalvm.shadowed.com.ibm.icu.impl.CharTrie
Trie implementation which stores data in char, 16 bits.
- Since:
- release 2.1, Jan 01 2002
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.graalvm.shadowed.com.ibm.icu.impl.Trie
Trie.DataManipulate -
Field Summary
Fields inherited from class org.graalvm.shadowed.com.ibm.icu.impl.Trie
BMP_INDEX_LENGTH, DATA_BLOCK_LENGTH, HEADER_LENGTH_, HEADER_OPTIONS_DATA_IS_32_BIT_, HEADER_OPTIONS_INDEX_SHIFT_, HEADER_OPTIONS_LATIN1_IS_LINEAR_MASK_, HEADER_SIGNATURE_, INDEX_STAGE_1_SHIFT_, INDEX_STAGE_2_SHIFT_, INDEX_STAGE_3_MASK_, LEAD_INDEX_OFFSET_, m_dataLength_, m_dataManipulate_, m_dataOffset_, m_index_, SURROGATE_BLOCK_BITS, SURROGATE_BLOCK_COUNT, SURROGATE_MASK_ -
Constructor Summary
ConstructorsConstructorDescriptionCharTrie(int initialValue, int leadUnitValue, Trie.DataManipulate dataManipulate) Make a dummy CharTrie.CharTrie(ByteBuffer bytes, Trie.DataManipulate dataManipulate) Creates a new Trie with the settings for the trie data. -
Method Summary
Modifier and TypeMethodDescriptionbooleanCLOVER:OFFfinal chargetBMPValue(char ch) Get the value associated with the BMP code point.final chargetCodePointValue(int ch) Gets the value associated with the codepoint.protected final intGets the default initial valuefinal chargetLatin1LinearValue(char ch) Gets the latin 1 fast path value.final chargetLeadValue(char ch) Gets the value to the data which this lead surrogate character points to.protected final intgetSurrogateOffset(char lead, char trail) Gets the offset to the data which the surrogate pair points to.final chargetSurrogateValue(char lead, char trail) Get the value associated with a pair of surrogates.final chargetTrailValue(int leadvalue, char trail) Get a value from a folding offset (from the value of a lead surrogate) and a trail surrogate.protected final intgetValue(int index) Gets the value at the argument index.inthashCode()protected final voidunserialize(ByteBuffer bytes) Parses the byte buffer and stores its trie content into a index and data arrayMethods inherited from class org.graalvm.shadowed.com.ibm.icu.impl.Trie
getBMPOffset, getCodePointOffset, getLeadOffset, getRawOffset, getSerializedDataSize, isCharTrie, isIntTrie, isLatin1Linear
-
Constructor Details
-
CharTrie
Creates a new Trie with the settings for the trie data.
Unserialize the 32-bit-aligned input buffer and use the data for the trie.
- Parameters:
bytes- data of an ICU data file, containing the triedataManipulate- object which provides methods to parse the char data
-
CharTrie
Make a dummy CharTrie. A dummy trie is an empty runtime trie, used when a real data trie cannot be loaded. The trie always returns the initialValue, or the leadUnitValue for lead surrogate code points. The Latin-1 part is always set up to be linear.- Parameters:
initialValue- the initial value that is set for all code pointsleadUnitValue- the value for lead surrogate code _units_ that do not have associated supplementary datadataManipulate- object which provides methods to parse the char data
-
-
Method Details
-
getCodePointValue
public final char getCodePointValue(int ch) Gets the value associated with the codepoint. If no value is associated with the codepoint, a default value will be returned.- Parameters:
ch- codepoint- Returns:
- offset to data
-
getLeadValue
public final char getLeadValue(char ch) Gets the value to the data which this lead surrogate character points to. Returned data may contain folding offset information for the next trailing surrogate character. This method does not guarantee correct results for trail surrogates.- Parameters:
ch- lead surrogate character- Returns:
- data value
-
getBMPValue
public final char getBMPValue(char ch) Get the value associated with the BMP code point. Lead surrogate code points are treated as normal code points, with unfolded values that may differ from getLeadValue() results.- Parameters:
ch- the input BMP code point- Returns:
- trie data value associated with the BMP codepoint
-
getSurrogateValue
public final char getSurrogateValue(char lead, char trail) Get the value associated with a pair of surrogates.- Parameters:
lead- a lead surrogatetrail- a trail surrogate
-
getTrailValue
public final char getTrailValue(int leadvalue, char trail) Get a value from a folding offset (from the value of a lead surrogate) and a trail surrogate.
If the
- Parameters:
leadvalue- value associated with the lead surrogate which contains the folding offsettrail- surrogate- Returns:
- trie data value associated with the trail character
-
getLatin1LinearValue
public final char getLatin1LinearValue(char ch) Gets the latin 1 fast path value.
Note this only works if latin 1 characters have their own linear array.
- Parameters:
ch- latin 1 characters- Returns:
- value associated with latin character
-
equals
-
hashCode
-
unserialize
Parses the byte buffer and stores its trie content into a index and data array
- Overrides:
unserializein classTrie- Parameters:
bytes- buffer containing trie data
-
getSurrogateOffset
protected final int getSurrogateOffset(char lead, char trail) Gets the offset to the data which the surrogate pair points to.- Specified by:
getSurrogateOffsetin classTrie- Parameters:
lead- lead surrogatetrail- trailing surrogate- Returns:
- offset to data
-
getValue
-
getInitialValue
protected final int getInitialValue()Gets the default initial value- Specified by:
getInitialValuein classTrie- Returns:
- 32 bit value
-