1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 ********************************************************************************
5 * Copyright (C) 2010-2012, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 ********************************************************************************
11 * Modification History:
13 * Date Name Description
14 * 12/15/2009 dougfelt Created
15 ********************************************************************************
21 #include "unicode/utypes.h"
22 #include "unicode/uobject.h"
26 * \brief C++ API: FieldPosition Iterator.
29 #if UCONFIG_NO_FORMATTING
31 #if U_SHOW_CPLUSPLUS_API
35 * Allow the declaration of APIs with pointers to FieldPositionIterator
36 * even when formatting is removed from the build.
38 class FieldPositionIterator
;
41 #endif // U_SHOW_CPLUSPLUS_API
45 #include "unicode/fieldpos.h"
46 #include "unicode/umisc.h"
48 #if U_SHOW_CPLUSPLUS_API
54 * FieldPositionIterator returns the field ids and their start/limit positions generated
55 * by a call to Format::format. See Format, NumberFormat, DecimalFormat.
58 class U_I18N_API FieldPositionIterator
: public UObject
{
64 ~FieldPositionIterator();
67 * Constructs a new, empty iterator.
70 FieldPositionIterator(void);
73 * Copy constructor. If the copy failed for some reason, the new iterator will
77 FieldPositionIterator(const FieldPositionIterator
&);
80 * Return true if another object is semantically equal to this
83 * Return true if this FieldPositionIterator is at the same position in an
84 * equal array of run values.
87 UBool
operator==(const FieldPositionIterator
&) const;
90 * Returns the complement of the result of operator==
91 * @param rhs The FieldPositionIterator to be compared for inequality
92 * @return the complement of the result of operator==
95 UBool
operator!=(const FieldPositionIterator
& rhs
) const { return !operator==(rhs
); }
98 * If the current position is valid, updates the FieldPosition values, advances the iterator,
99 * and returns TRUE, otherwise returns FALSE.
102 UBool
next(FieldPosition
& fp
);
105 friend class FieldPositionIteratorHandler
;
108 * Sets the data used by the iterator, and resets the position.
109 * Returns U_ILLEGAL_ARGUMENT_ERROR in status if the data is not valid
110 * (length is not a multiple of 3, or start >= limit for any run).
112 void setData(UVector32
*adopt
, UErrorCode
& status
);
119 #endif // U_SHOW_CPLUSPLUS_API
121 #endif /* #if !UCONFIG_NO_FORMATTING */