com.ibm.icu.impl.PVecToTrieCompactHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icu4j Show documentation
Show all versions of icu4j Show documentation
International Component for Unicode for Java (ICU4J) is a mature, widely used Java library
providing Unicode and Globalization support
/*
******************************************************************************
* Copyright (C) 1996-2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
/*
* @author Shaopeng Jia
*/
package com.ibm.icu.impl;
import com.ibm.icu.impl.PropsVectors.CompactHandler;
public class PVecToTrieCompactHandler implements CompactHandler {
public IntTrieBuilder builder;
public int initialValue;
public void setRowIndexForErrorValue(int rowIndex) {
}
public void setRowIndexForInitialValue(int rowIndex) {
initialValue = rowIndex;
}
public void setRowIndexForRange(int start, int end, int rowIndex) {
builder.setRange(start, end + 1, rowIndex, true);
}
public void startRealValues(int rowIndex) {
if (rowIndex > 0xffff) {
// too many rows for a 16-bit trie
throw new IndexOutOfBoundsException();
} else {
builder = new IntTrieBuilder(null, 100000, initialValue,
initialValue, false);
}
}
}