1 7 8 package com.ibm.icu.lang; 9 10 import com.ibm.icu.impl.TrieIterator; 11 import com.ibm.icu.impl.UCharacterProperty; 12 13 34 class UCharacterTypeIterator extends TrieIterator 35 { 36 38 43 protected UCharacterTypeIterator(UCharacterProperty property) 44 { 45 super(property.m_trie_); 46 } 47 48 50 59 protected int extract(int value) 60 { 61 return value & UCharacterProperty.TYPE_MASK; 62 } 63 64 66 69 private int m_property_[]; 70 } | Popular Tags |