summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XCollatorCaseFirst.hpp
blob: 680e3e9f9a6e04d8715a5f3b0fc2831a17219e5f (plain)
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
#ifndef ICU4XCollatorCaseFirst_HPP
#define ICU4XCollatorCaseFirst_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"

#include "ICU4XCollatorCaseFirst.h"



/**
 * See the [Rust documentation for `CaseFirst`](https://docs.rs/icu/latest/icu/collator/enum.CaseFirst.html) for more information.
 */
enum struct ICU4XCollatorCaseFirst {
  Auto = 0,
  Off = 1,
  LowerFirst = 2,
  UpperFirst = 3,
};

#endif