123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- #ifndef USETITER_H
- #define USETITER_H
- #include "unicode/utypes.h"
- #include "unicode/uobject.h"
- #include "unicode/unistr.h"
- U_NAMESPACE_BEGIN
- class UnicodeSet;
- class UnicodeString;
- /**
- *
- * UnicodeSetIterator iterates over the contents of a UnicodeSet. It
- * iterates over either code points or code point ranges. After all
- * code points or ranges have been returned, it returns the
- * multicharacter strings of the UnicodeSet, if any.
- *
- * This class is not intended to be subclassed. Consider any fields
- * or methods declared as "protected" to be private. The use of
- * protected in this class is an artifact of history.
- *
- * <p>To iterate over code points and strings, use a loop like this:
- * <pre>
- * UnicodeSetIterator it(set);
- * while (it.next()) {
- * processItem(it.getString());
- * }
- * </pre>
- * <p>Each item in the set is accessed as a string. Set elements
- * consisting of single code points are returned as strings containing
- * just the one code point.
- *
- * <p>To iterate over code point ranges, instead of individual code points,
- * use a loop like this:
- * <pre>
- * UnicodeSetIterator it(set);
- * while (it.nextRange()) {
- * if (it.isString()) {
- * processString(it.getString());
- * } else {
- * processCodepointRange(it.getCodepoint(), it.getCodepointEnd());
- * }
- * }
- * </pre>
- * @author M. Davis
- * @stable ICU 2.4
- */
- class U_COMMON_API UnicodeSetIterator : public UObject {
- protected:
-
- enum { IS_STRING = -1 };
-
- UChar32 codepoint;
-
- UChar32 codepointEnd;
-
- const UnicodeString* string;
- public:
-
- UnicodeSetIterator(const UnicodeSet& set);
-
- UnicodeSetIterator();
-
- virtual ~UnicodeSetIterator();
-
- inline UBool isString() const;
-
- inline UChar32 getCodepoint() const;
-
- inline UChar32 getCodepointEnd() const;
-
- const UnicodeString& getString();
-
- UBool next();
-
- UBool nextRange();
-
- void reset(const UnicodeSet& set);
-
- void reset();
-
- static UClassID U_EXPORT2 getStaticClassID();
-
- virtual UClassID getDynamicClassID() const;
-
- protected:
-
-
-
-
- const UnicodeSet* set;
-
- int32_t endRange;
-
- int32_t range;
-
- int32_t endElement;
-
- int32_t nextElement;
-
-
- int32_t nextString;
-
- int32_t stringCount;
-
- UnicodeString *cpString;
-
- UnicodeSetIterator(const UnicodeSetIterator&);
-
- UnicodeSetIterator& operator=(const UnicodeSetIterator&);
-
- virtual void loadRange(int32_t range);
- };
- inline UBool UnicodeSetIterator::isString() const {
- return codepoint == (UChar32)IS_STRING;
- }
- inline UChar32 UnicodeSetIterator::getCodepoint() const {
- return codepoint;
- }
- inline UChar32 UnicodeSetIterator::getCodepointEnd() const {
- return codepointEnd;
- }
- U_NAMESPACE_END
- #endif
|