Package org.apache.poi.util
Class CodepointsUtil
- java.lang.Object
-
- org.apache.poi.util.CodepointsUtil
-
-
Constructor Summary
Constructors Constructor Description CodepointsUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Iterator<String>
iteratorFor(String text)
static PrimitiveIterator.OfInt
primitiveIterator(String text)
-
-
-
Method Detail
-
iteratorFor
public static Iterator<String> iteratorFor(String text)
- Parameters:
text
- to iterate over- Returns:
- iterator with Strings representing the codepoints
- See Also:
a more performant iterator
-
primitiveIterator
public static PrimitiveIterator.OfInt primitiveIterator(String text)
- Parameters:
text
- to iterate over- Returns:
- iterator with ints representing the codepoints
- Since:
- POI 5.2.4
-
-