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
#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,
};
class ICU4XLocale;
#include "ICU4XError.hpp"
#include "ICU4XLocale.hpp"
#endif