1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#ifndef ICU4XAnyCalendarKind_HPP
#define ICU4XAnyCalendarKind_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"
#include "ICU4XAnyCalendarKind.h"
/**
* The various calendar types currently supported by [`ICU4XCalendar`]
*
* See the [Rust documentation for `AnyCalendarKind`](https://docs.rs/icu/latest/icu/calendar/enum.AnyCalendarKind.html) for more information.
*/
enum struct ICU4XAnyCalendarKind {
/**
* The kind of an Iso calendar
*/
Iso = 0,
/**
* The kind of a Gregorian calendar
*/
Gregorian = 1,
/**
* The kind of a Buddhist calendar
*/
Buddhist = 2,
/**
* The kind of a Japanese calendar with modern eras
*/
Japanese = 3,
/**
* The kind of a Japanese calendar with modern and historic eras
*/
JapaneseExtended = 4,
/**
* The kind of an Ethiopian calendar, with Amete Mihret era
*/
Ethiopian = 5,
/**
* The kind of an Ethiopian calendar, with Amete Alem era
*/
EthiopianAmeteAlem = 6,
/**
* The kind of a Indian calendar
*/
Indian = 7,
/**
* The kind of a Coptic calendar
*/
Coptic = 8,
/**
* The kind of a Dangi calendar
*/
Dangi = 9,
/**
* The kind of a Chinese calendar
*/
Chinese = 10,
/**
* The kind of a Hebrew calendar
*/
Hebrew = 11,
/**
* The kind of a Islamic civil calendar
*/
IslamicCivil = 12,
/**
* The kind of a Islamic observational calendar
*/
IslamicObservational = 13,
/**
* The kind of a Islamic tabular calendar
*/
IslamicTabular = 14,
/**
* The kind of a Islamic Umm al-Qura calendar
*/
IslamicUmmAlQura = 15,
/**
* The kind of a Persian calendar
*/
Persian = 16,
/**
* The kind of a Roc calendar
*/
Roc = 17,
};
class ICU4XLocale;
#include "ICU4XError.hpp"
#include "ICU4XLocale.hpp"
#endif
|