ICU 52.1  52.1
fieldpos.h
Go to the documentation of this file.
1 /*
2  ********************************************************************************
3  * Copyright (C) 1997-2006, International Business Machines
4  * Corporation and others. All Rights Reserved.
5  ********************************************************************************
6  *
7  * File FIELDPOS.H
8  *
9  * Modification History:
10  *
11  * Date Name Description
12  * 02/25/97 aliu Converted from java.
13  * 03/17/97 clhuang Updated per Format implementation.
14  * 07/17/98 stephen Added default/copy ctors, and operators =, ==, !=
15  ********************************************************************************
16  */
17 
18 // *****************************************************************************
19 // This file was generated from the java source file FieldPosition.java
20 // *****************************************************************************
21 
22 #ifndef FIELDPOS_H
23 #define FIELDPOS_H
24 
25 #include "unicode/utypes.h"
26 
32 #if !UCONFIG_NO_FORMATTING
33 
34 #include "unicode/uobject.h"
35 
37 
107 public:
112  enum { DONT_CARE = -1 };
113 
119  : UObject(), fField(DONT_CARE), fBeginIndex(0), fEndIndex(0) {}
120 
132  FieldPosition(int32_t field)
133  : UObject(), fField(field), fBeginIndex(0), fEndIndex(0) {}
134 
141  : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
142 
147  virtual ~FieldPosition();
148 
154  FieldPosition& operator=(const FieldPosition& copy);
155 
162  UBool operator==(const FieldPosition& that) const;
163 
170  UBool operator!=(const FieldPosition& that) const;
171 
183  FieldPosition *clone() const;
184 
190  int32_t getField(void) const { return fField; }
191 
197  int32_t getBeginIndex(void) const { return fBeginIndex; }
198 
206  int32_t getEndIndex(void) const { return fEndIndex; }
207 
213  void setField(int32_t f) { fField = f; }
214 
220  void setBeginIndex(int32_t bi) { fBeginIndex = bi; }
221 
227  void setEndIndex(int32_t ei) { fEndIndex = ei; }
228 
234  virtual UClassID getDynamicClassID() const;
235 
241  static UClassID U_EXPORT2 getStaticClassID();
242 
243 private:
248  int32_t fField;
249 
254  int32_t fBeginIndex;
255 
260  int32_t fEndIndex;
261 };
262 
263 inline FieldPosition&
264 FieldPosition::operator=(const FieldPosition& copy)
265 {
266  fField = copy.fField;
267  fEndIndex = copy.fEndIndex;
268  fBeginIndex = copy.fBeginIndex;
269  return *this;
270 }
271 
272 inline UBool
274 {
275  return (fField == copy.fField &&
276  fEndIndex == copy.fEndIndex &&
277  fBeginIndex == copy.fBeginIndex);
278 }
279 
280 inline UBool
282 {
283  return !operator==(copy);
284 }
285 
287 
288 #endif /* #if !UCONFIG_NO_FORMATTING */
289 
290 #endif // _FIELDPOS
291 //eof