dtptngen.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. /*
  2. *******************************************************************************
  3. * Copyright (C) 2007-2016, International Business Machines Corporation and
  4. * others. All Rights Reserved.
  5. *******************************************************************************
  6. *
  7. * File DTPTNGEN.H
  8. *
  9. *******************************************************************************
  10. */
  11. #ifndef __DTPTNGEN_H__
  12. #define __DTPTNGEN_H__
  13. #include "unicode/datefmt.h"
  14. #include "unicode/locid.h"
  15. #include "unicode/udat.h"
  16. #include "unicode/udatpg.h"
  17. U_NAMESPACE_BEGIN
  18. /**
  19. * \file
  20. * \brief C++ API: Date/Time Pattern Generator
  21. */
  22. class Hashtable;
  23. class FormatParser;
  24. class DateTimeMatcher;
  25. class DistanceInfo;
  26. class PatternMap;
  27. class PtnSkeleton;
  28. class SharedDateTimePatternGenerator;
  29. /**
  30. * This class provides flexible generation of date format patterns, like "yy-MM-dd".
  31. * The user can build up the generator by adding successive patterns. Once that
  32. * is done, a query can be made using a "skeleton", which is a pattern which just
  33. * includes the desired fields and lengths. The generator will return the "best fit"
  34. * pattern corresponding to that skeleton.
  35. * <p>The main method people will use is getBestPattern(String skeleton),
  36. * since normally this class is pre-built with data from a particular locale.
  37. * However, generators can be built directly from other data as well.
  38. * <p><i>Issue: may be useful to also have a function that returns the list of
  39. * fields in a pattern, in order, since we have that internally.
  40. * That would be useful for getting the UI order of field elements.</i>
  41. * @stable ICU 3.8
  42. **/
  43. class U_I18N_API DateTimePatternGenerator : public UObject {
  44. public:
  45. /**
  46. * Construct a flexible generator according to default locale.
  47. * @param status Output param set to success/failure code on exit,
  48. * which must not indicate a failure before the function call.
  49. * @stable ICU 3.8
  50. */
  51. static DateTimePatternGenerator* U_EXPORT2 createInstance(UErrorCode& status);
  52. /**
  53. * Construct a flexible generator according to data for a given locale.
  54. * @param uLocale
  55. * @param status Output param set to success/failure code on exit,
  56. * which must not indicate a failure before the function call.
  57. * @stable ICU 3.8
  58. */
  59. static DateTimePatternGenerator* U_EXPORT2 createInstance(const Locale& uLocale, UErrorCode& status);
  60. #ifndef U_HIDE_INTERNAL_API
  61. /**
  62. * For ICU use only
  63. *
  64. * @internal
  65. */
  66. static DateTimePatternGenerator* U_EXPORT2 internalMakeInstance(const Locale& uLocale, UErrorCode& status);
  67. #endif /* U_HIDE_INTERNAL_API */
  68. /**
  69. * Create an empty generator, to be constructed with addPattern(...) etc.
  70. * @param status Output param set to success/failure code on exit,
  71. * which must not indicate a failure before the function call.
  72. * @stable ICU 3.8
  73. */
  74. static DateTimePatternGenerator* U_EXPORT2 createEmptyInstance(UErrorCode& status);
  75. /**
  76. * Destructor.
  77. * @stable ICU 3.8
  78. */
  79. virtual ~DateTimePatternGenerator();
  80. /**
  81. * Clone DateTimePatternGenerator object. Clients are responsible for
  82. * deleting the DateTimePatternGenerator object cloned.
  83. * @stable ICU 3.8
  84. */
  85. DateTimePatternGenerator* clone() const;
  86. /**
  87. * Return true if another object is semantically equal to this one.
  88. *
  89. * @param other the DateTimePatternGenerator object to be compared with.
  90. * @return true if other is semantically equal to this.
  91. * @stable ICU 3.8
  92. */
  93. UBool operator==(const DateTimePatternGenerator& other) const;
  94. /**
  95. * Return true if another object is semantically unequal to this one.
  96. *
  97. * @param other the DateTimePatternGenerator object to be compared with.
  98. * @return true if other is semantically unequal to this.
  99. * @stable ICU 3.8
  100. */
  101. UBool operator!=(const DateTimePatternGenerator& other) const;
  102. #ifndef U_HIDE_DRAFT_API
  103. /**
  104. * Utility to return a unique skeleton from a given pattern. For example,
  105. * both "MMM-dd" and "dd/MMM" produce the skeleton "MMMdd".
  106. *
  107. * @param pattern Input pattern, such as "dd/MMM"
  108. * @param status Output param set to success/failure code on exit,
  109. * which must not indicate a failure before the function call.
  110. * @return skeleton such as "MMMdd"
  111. * @draft ICU 56
  112. */
  113. static UnicodeString staticGetSkeleton(const UnicodeString& pattern, UErrorCode& status);
  114. #endif /* U_HIDE_DRAFT_API */
  115. /**
  116. * Utility to return a unique skeleton from a given pattern. For example,
  117. * both "MMM-dd" and "dd/MMM" produce the skeleton "MMMdd".
  118. * getSkeleton() works exactly like staticGetSkeleton().
  119. * Use staticGetSkeleton() instead of getSkeleton().
  120. *
  121. * @param pattern Input pattern, such as "dd/MMM"
  122. * @param status Output param set to success/failure code on exit,
  123. * which must not indicate a failure before the function call.
  124. * @return skeleton such as "MMMdd"
  125. * @stable ICU 3.8
  126. */
  127. UnicodeString getSkeleton(const UnicodeString& pattern, UErrorCode& status); /* {
  128. The function is commented out because it is a stable API calling a draft API.
  129. After staticGetSkeleton becomes stable, staticGetSkeleton can be used and
  130. these comments and the definition of getSkeleton in dtptngen.cpp should be removed.
  131. return staticGetSkeleton(pattern, status);
  132. }*/
  133. #ifndef U_HIDE_DRAFT_API
  134. /**
  135. * Utility to return a unique base skeleton from a given pattern. This is
  136. * the same as the skeleton, except that differences in length are minimized
  137. * so as to only preserve the difference between string and numeric form. So
  138. * for example, both "MMM-dd" and "d/MMM" produce the skeleton "MMMd"
  139. * (notice the single d).
  140. *
  141. * @param pattern Input pattern, such as "dd/MMM"
  142. * @param status Output param set to success/failure code on exit,
  143. * which must not indicate a failure before the function call.
  144. * @return base skeleton, such as "MMMd"
  145. * @draft ICU 56
  146. */
  147. static UnicodeString staticGetBaseSkeleton(const UnicodeString& pattern, UErrorCode& status);
  148. #endif /* U_HIDE_DRAFT_API */
  149. /**
  150. * Utility to return a unique base skeleton from a given pattern. This is
  151. * the same as the skeleton, except that differences in length are minimized
  152. * so as to only preserve the difference between string and numeric form. So
  153. * for example, both "MMM-dd" and "d/MMM" produce the skeleton "MMMd"
  154. * (notice the single d).
  155. * getBaseSkeleton() works exactly like staticGetBaseSkeleton().
  156. * Use staticGetBaseSkeleton() instead of getBaseSkeleton().
  157. *
  158. * @param pattern Input pattern, such as "dd/MMM"
  159. * @param status Output param set to success/failure code on exit,
  160. * which must not indicate a failure before the function call.
  161. * @return base skeleton, such as "MMMd"
  162. * @stable ICU 3.8
  163. */
  164. UnicodeString getBaseSkeleton(const UnicodeString& pattern, UErrorCode& status); /* {
  165. The function is commented out because it is a stable API calling a draft API.
  166. After staticGetBaseSkeleton becomes stable, staticGetBaseSkeleton can be used and
  167. these comments and the definition of getBaseSkeleton in dtptngen.cpp should be removed.
  168. return staticGetBaseSkeleton(pattern, status);
  169. }*/
  170. /**
  171. * Adds a pattern to the generator. If the pattern has the same skeleton as
  172. * an existing pattern, and the override parameter is set, then the previous
  173. * value is overriden. Otherwise, the previous value is retained. In either
  174. * case, the conflicting status is set and previous vale is stored in
  175. * conflicting pattern.
  176. * <p>
  177. * Note that single-field patterns (like "MMM") are automatically added, and
  178. * don't need to be added explicitly!
  179. *
  180. * @param pattern Input pattern, such as "dd/MMM"
  181. * @param override When existing values are to be overridden use true,
  182. * otherwise use false.
  183. * @param conflictingPattern Previous pattern with the same skeleton.
  184. * @param status Output param set to success/failure code on exit,
  185. * which must not indicate a failure before the function call.
  186. * @return conflicting status. The value could be UDATPG_NO_CONFLICT,
  187. * UDATPG_BASE_CONFLICT or UDATPG_CONFLICT.
  188. * @stable ICU 3.8
  189. * <p>
  190. * <h4>Sample code</h4>
  191. * \snippet samples/dtptngsample/dtptngsample.cpp getBestPatternExample1
  192. * \snippet samples/dtptngsample/dtptngsample.cpp addPatternExample
  193. * <p>
  194. */
  195. UDateTimePatternConflict addPattern(const UnicodeString& pattern,
  196. UBool override,
  197. UnicodeString& conflictingPattern,
  198. UErrorCode& status);
  199. /**
  200. * An AppendItem format is a pattern used to append a field if there is no
  201. * good match. For example, suppose that the input skeleton is "GyyyyMMMd",
  202. * and there is no matching pattern internally, but there is a pattern
  203. * matching "yyyyMMMd", say "d-MM-yyyy". Then that pattern is used, plus the
  204. * G. The way these two are conjoined is by using the AppendItemFormat for G
  205. * (era). So if that value is, say "{0}, {1}" then the final resulting
  206. * pattern is "d-MM-yyyy, G".
  207. * <p>
  208. * There are actually three available variables: {0} is the pattern so far,
  209. * {1} is the element we are adding, and {2} is the name of the element.
  210. * <p>
  211. * This reflects the way that the CLDR data is organized.
  212. *
  213. * @param field such as UDATPG_ERA_FIELD.
  214. * @param value pattern, such as "{0}, {1}"
  215. * @stable ICU 3.8
  216. */
  217. void setAppendItemFormat(UDateTimePatternField field, const UnicodeString& value);
  218. /**
  219. * Getter corresponding to setAppendItemFormat. Values below 0 or at or
  220. * above UDATPG_FIELD_COUNT are illegal arguments.
  221. *
  222. * @param field such as UDATPG_ERA_FIELD.
  223. * @return append pattern for field
  224. * @stable ICU 3.8
  225. */
  226. const UnicodeString& getAppendItemFormat(UDateTimePatternField field) const;
  227. /**
  228. * Sets the names of field, eg "era" in English for ERA. These are only
  229. * used if the corresponding AppendItemFormat is used, and if it contains a
  230. * {2} variable.
  231. * <p>
  232. * This reflects the way that the CLDR data is organized.
  233. *
  234. * @param field such as UDATPG_ERA_FIELD.
  235. * @param value name of the field
  236. * @stable ICU 3.8
  237. */
  238. void setAppendItemName(UDateTimePatternField field, const UnicodeString& value);
  239. /**
  240. * Getter corresponding to setAppendItemNames. Values below 0 or at or above
  241. * UDATPG_FIELD_COUNT are illegal arguments.
  242. *
  243. * @param field such as UDATPG_ERA_FIELD.
  244. * @return name for field
  245. * @stable ICU 3.8
  246. */
  247. const UnicodeString& getAppendItemName(UDateTimePatternField field) const;
  248. /**
  249. * The DateTimeFormat is a message format pattern used to compose date and
  250. * time patterns. The default pattern in the root locale is "{1} {0}", where
  251. * {1} will be replaced by the date pattern and {0} will be replaced by the
  252. * time pattern; however, other locales may specify patterns such as
  253. * "{1}, {0}" or "{1} 'at' {0}", etc.
  254. * <p>
  255. * This is used when the input skeleton contains both date and time fields,
  256. * but there is not a close match among the added patterns. For example,
  257. * suppose that this object was created by adding "dd-MMM" and "hh:mm", and
  258. * its datetimeFormat is the default "{1} {0}". Then if the input skeleton
  259. * is "MMMdhmm", there is not an exact match, so the input skeleton is
  260. * broken up into two components "MMMd" and "hmm". There are close matches
  261. * for those two skeletons, so the result is put together with this pattern,
  262. * resulting in "d-MMM h:mm".
  263. *
  264. * @param dateTimeFormat
  265. * message format pattern, here {1} will be replaced by the date
  266. * pattern and {0} will be replaced by the time pattern.
  267. * @stable ICU 3.8
  268. */
  269. void setDateTimeFormat(const UnicodeString& dateTimeFormat);
  270. /**
  271. * Getter corresponding to setDateTimeFormat.
  272. * @return DateTimeFormat.
  273. * @stable ICU 3.8
  274. */
  275. const UnicodeString& getDateTimeFormat() const;
  276. /**
  277. * Return the best pattern matching the input skeleton. It is guaranteed to
  278. * have all of the fields in the skeleton.
  279. *
  280. * @param skeleton
  281. * The skeleton is a pattern containing only the variable fields.
  282. * For example, "MMMdd" and "mmhh" are skeletons.
  283. * @param status Output param set to success/failure code on exit,
  284. * which must not indicate a failure before the function call.
  285. * @return bestPattern
  286. * The best pattern found from the given skeleton.
  287. * @stable ICU 3.8
  288. * <p>
  289. * <h4>Sample code</h4>
  290. * \snippet samples/dtptngsample/dtptngsample.cpp getBestPatternExample1
  291. * \snippet samples/dtptngsample/dtptngsample.cpp getBestPatternExample
  292. * <p>
  293. */
  294. UnicodeString getBestPattern(const UnicodeString& skeleton, UErrorCode& status);
  295. /**
  296. * Return the best pattern matching the input skeleton. It is guaranteed to
  297. * have all of the fields in the skeleton.
  298. *
  299. * @param skeleton
  300. * The skeleton is a pattern containing only the variable fields.
  301. * For example, "MMMdd" and "mmhh" are skeletons.
  302. * @param options
  303. * Options for forcing the length of specified fields in the
  304. * returned pattern to match those in the skeleton (when this
  305. * would not happen otherwise). For default behavior, use
  306. * UDATPG_MATCH_NO_OPTIONS.
  307. * @param status
  308. * Output param set to success/failure code on exit,
  309. * which must not indicate a failure before the function call.
  310. * @return bestPattern
  311. * The best pattern found from the given skeleton.
  312. * @stable ICU 4.4
  313. */
  314. UnicodeString getBestPattern(const UnicodeString& skeleton,
  315. UDateTimePatternMatchOptions options,
  316. UErrorCode& status);
  317. /**
  318. * Adjusts the field types (width and subtype) of a pattern to match what is
  319. * in a skeleton. That is, if you supply a pattern like "d-M H:m", and a
  320. * skeleton of "MMMMddhhmm", then the input pattern is adjusted to be
  321. * "dd-MMMM hh:mm". This is used internally to get the best match for the
  322. * input skeleton, but can also be used externally.
  323. *
  324. * @param pattern Input pattern
  325. * @param skeleton
  326. * The skeleton is a pattern containing only the variable fields.
  327. * For example, "MMMdd" and "mmhh" are skeletons.
  328. * @param status Output param set to success/failure code on exit,
  329. * which must not indicate a failure before the function call.
  330. * @return pattern adjusted to match the skeleton fields widths and subtypes.
  331. * @stable ICU 3.8
  332. * <p>
  333. * <h4>Sample code</h4>
  334. * \snippet samples/dtptngsample/dtptngsample.cpp getBestPatternExample1
  335. * \snippet samples/dtptngsample/dtptngsample.cpp replaceFieldTypesExample
  336. * <p>
  337. */
  338. UnicodeString replaceFieldTypes(const UnicodeString& pattern,
  339. const UnicodeString& skeleton,
  340. UErrorCode& status);
  341. /**
  342. * Adjusts the field types (width and subtype) of a pattern to match what is
  343. * in a skeleton. That is, if you supply a pattern like "d-M H:m", and a
  344. * skeleton of "MMMMddhhmm", then the input pattern is adjusted to be
  345. * "dd-MMMM hh:mm". This is used internally to get the best match for the
  346. * input skeleton, but can also be used externally.
  347. *
  348. * @param pattern Input pattern
  349. * @param skeleton
  350. * The skeleton is a pattern containing only the variable fields.
  351. * For example, "MMMdd" and "mmhh" are skeletons.
  352. * @param options
  353. * Options controlling whether the length of specified fields in the
  354. * pattern are adjusted to match those in the skeleton (when this
  355. * would not happen otherwise). For default behavior, use
  356. * UDATPG_MATCH_NO_OPTIONS.
  357. * @param status
  358. * Output param set to success/failure code on exit,
  359. * which must not indicate a failure before the function call.
  360. * @return pattern adjusted to match the skeleton fields widths and subtypes.
  361. * @stable ICU 4.4
  362. */
  363. UnicodeString replaceFieldTypes(const UnicodeString& pattern,
  364. const UnicodeString& skeleton,
  365. UDateTimePatternMatchOptions options,
  366. UErrorCode& status);
  367. /**
  368. * Return a list of all the skeletons (in canonical form) from this class.
  369. *
  370. * Call getPatternForSkeleton() to get the corresponding pattern.
  371. *
  372. * @param status Output param set to success/failure code on exit,
  373. * which must not indicate a failure before the function call.
  374. * @return StringEnumeration with the skeletons.
  375. * The caller must delete the object.
  376. * @stable ICU 3.8
  377. */
  378. StringEnumeration* getSkeletons(UErrorCode& status) const;
  379. /**
  380. * Get the pattern corresponding to a given skeleton.
  381. * @param skeleton
  382. * @return pattern corresponding to a given skeleton.
  383. * @stable ICU 3.8
  384. */
  385. const UnicodeString& getPatternForSkeleton(const UnicodeString& skeleton) const;
  386. /**
  387. * Return a list of all the base skeletons (in canonical form) from this class.
  388. *
  389. * @param status Output param set to success/failure code on exit,
  390. * which must not indicate a failure before the function call.
  391. * @return a StringEnumeration with the base skeletons.
  392. * The caller must delete the object.
  393. * @stable ICU 3.8
  394. */
  395. StringEnumeration* getBaseSkeletons(UErrorCode& status) const;
  396. #ifndef U_HIDE_INTERNAL_API
  397. /**
  398. * Return a list of redundant patterns are those which if removed, make no
  399. * difference in the resulting getBestPattern values. This method returns a
  400. * list of them, to help check the consistency of the patterns used to build
  401. * this generator.
  402. *
  403. * @param status Output param set to success/failure code on exit,
  404. * which must not indicate a failure before the function call.
  405. * @return a StringEnumeration with the redundant pattern.
  406. * The caller must delete the object.
  407. * @internal ICU 3.8
  408. */
  409. StringEnumeration* getRedundants(UErrorCode& status);
  410. #endif /* U_HIDE_INTERNAL_API */
  411. /**
  412. * The decimal value is used in formatting fractions of seconds. If the
  413. * skeleton contains fractional seconds, then this is used with the
  414. * fractional seconds. For example, suppose that the input pattern is
  415. * "hhmmssSSSS", and the best matching pattern internally is "H:mm:ss", and
  416. * the decimal string is ",". Then the resulting pattern is modified to be
  417. * "H:mm:ss,SSSS"
  418. *
  419. * @param decimal
  420. * @stable ICU 3.8
  421. */
  422. void setDecimal(const UnicodeString& decimal);
  423. /**
  424. * Getter corresponding to setDecimal.
  425. * @return UnicodeString corresponding to the decimal point
  426. * @stable ICU 3.8
  427. */
  428. const UnicodeString& getDecimal() const;
  429. /**
  430. * ICU "poor man's RTTI", returns a UClassID for the actual class.
  431. *
  432. * @stable ICU 3.8
  433. */
  434. virtual UClassID getDynamicClassID() const;
  435. /**
  436. * ICU "poor man's RTTI", returns a UClassID for this class.
  437. *
  438. * @stable ICU 3.8
  439. */
  440. static UClassID U_EXPORT2 getStaticClassID(void);
  441. private:
  442. /**
  443. * Constructor.
  444. * @stable ICU 3.8
  445. */
  446. DateTimePatternGenerator(UErrorCode & status);
  447. /**
  448. * Constructor.
  449. * @stable ICU 3.8
  450. */
  451. DateTimePatternGenerator(const Locale& locale, UErrorCode & status);
  452. /**
  453. * Copy constructor.
  454. * @param other DateTimePatternGenerator to copy
  455. * @stable ICU 3.8
  456. */
  457. DateTimePatternGenerator(const DateTimePatternGenerator& other);
  458. /**
  459. * Default assignment operator.
  460. * @param other DateTimePatternGenerator to copy
  461. * @stable ICU 3.8
  462. */
  463. DateTimePatternGenerator& operator=(const DateTimePatternGenerator& other);
  464. Locale pLocale; // pattern locale
  465. FormatParser *fp;
  466. DateTimeMatcher* dtMatcher;
  467. DistanceInfo *distanceInfo;
  468. PatternMap *patternMap;
  469. UnicodeString appendItemFormats[UDATPG_FIELD_COUNT];
  470. UnicodeString appendItemNames[UDATPG_FIELD_COUNT];
  471. UnicodeString dateTimeFormat;
  472. UnicodeString decimal;
  473. DateTimeMatcher *skipMatcher;
  474. Hashtable *fAvailableFormatKeyHash;
  475. UnicodeString hackPattern;
  476. UnicodeString emptyString;
  477. UChar fDefaultHourFormatChar;
  478. int32_t fAllowedHourFormats[7]; // Actually an array of AllowedHourFormat enum type, ending with UNKNOWN.
  479. /* internal flags masks for adjustFieldTypes etc. */
  480. enum {
  481. kDTPGNoFlags = 0,
  482. kDTPGFixFractionalSeconds = 1,
  483. kDTPGSkeletonUsesCapJ = 2,
  484. kDTPGSkeletonUsesLowB = 3,
  485. kDTPGSkeletonUsesCapB = 4
  486. };
  487. void initData(const Locale &locale, UErrorCode &status);
  488. void addCanonicalItems();
  489. void addICUPatterns(const Locale& locale, UErrorCode& status);
  490. void hackTimes(const UnicodeString& hackPattern, UErrorCode& status);
  491. void addCLDRData(const Locale& locale, UErrorCode& status);
  492. UDateTimePatternConflict addPatternWithSkeleton(const UnicodeString& pattern, const UnicodeString * skeletonToUse, UBool override, UnicodeString& conflictingPattern, UErrorCode& status);
  493. void initHashtable(UErrorCode& status);
  494. void setDateTimeFromCalendar(const Locale& locale, UErrorCode& status);
  495. void setDecimalSymbols(const Locale& locale, UErrorCode& status);
  496. UDateTimePatternField getAppendFormatNumber(const char* field) const;
  497. UDateTimePatternField getAppendNameNumber(const char* field) const;
  498. void getAppendName(UDateTimePatternField field, UnicodeString& value);
  499. int32_t getCanonicalIndex(const UnicodeString& field);
  500. const UnicodeString* getBestRaw(DateTimeMatcher& source, int32_t includeMask, DistanceInfo* missingFields, const PtnSkeleton** specifiedSkeletonPtr = 0);
  501. UnicodeString adjustFieldTypes(const UnicodeString& pattern, const PtnSkeleton* specifiedSkeleton, int32_t flags, UDateTimePatternMatchOptions options = UDATPG_MATCH_NO_OPTIONS);
  502. UnicodeString getBestAppending(int32_t missingFields, int32_t flags, UDateTimePatternMatchOptions options = UDATPG_MATCH_NO_OPTIONS);
  503. int32_t getTopBitNumber(int32_t foundMask);
  504. void setAvailableFormat(const UnicodeString &key, UErrorCode& status);
  505. UBool isAvailableFormatSet(const UnicodeString &key) const;
  506. void copyHashtable(Hashtable *other, UErrorCode &status);
  507. UBool isCanonicalItem(const UnicodeString& item) const;
  508. static void loadAllowedHourFormatsData(UErrorCode &status);
  509. void getAllowedHourFormats(const Locale &locale, UErrorCode &status);
  510. } ;// end class DateTimePatternGenerator
  511. U_NAMESPACE_END
  512. #endif