| java.lang.Object com.ibm.icu.dev.test.util.CaseIterator
CaseIterator | public class CaseIterator (Code) | | Incrementally returns the set of all strings that case-fold to the same value.
|
Method Summary | |
public static void | main(String[] args) Temporary test, just to see how the stuff works. | public String | next() Iterates through the case variants.
next case variant. | public void | reset(String source) Reset to different source. | public void | reset() |
main | public static void main(String[] args)(Code) | | Temporary test, just to see how the stuff works.
|
next | public String next()(Code) | | Iterates through the case variants.
next case variant. Each variant will case-fold to the same value as the source will.When the iteration is done, null is returned. |
reset | public void reset(String source)(Code) | | Reset to different source. Once reset, the iteration starts from the beginning.
Parameters: source - The string to get case variants for |
reset | public void reset()(Code) | | Restart the iteration from the beginning, but with same source
|
|
|