Package com.ibm.icu.dev.util
Class UnicodeMap.EntryRange<T>
- java.lang.Object
-
- com.ibm.icu.dev.util.UnicodeMap.EntryRange<T>
-
- Enclosing class:
- UnicodeMap<T>
public static class UnicodeMap.EntryRange<T> extends java.lang.Object
Struct-like class used to iterate over a UnicodeMap in a for loop. If the value is a string, then codepoint == codepointEnd == -1. Otherwise the string is null; Caution: The contents may change during the iteration!
-
-
Field Summary
Fields Modifier and Type Field Description int
codepoint
int
codepointEnd
java.lang.String
string
T
value
-
Constructor Summary
Constructors Constructor Description EntryRange()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
codepoint
public int codepoint
-
codepointEnd
public int codepointEnd
-
string
public java.lang.String string
-
value
public T value
-
-