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
/// Provides conversion to and detection of class case strings.
///
/// Example string `ClassCase`
/// Provides conversion to and detection of camel case strings.
///
/// Example string `camelCase`
/// Provides conversion to and detection of snake case strings.
///
/// Example string `snake_case`
/// Provides conversion to and detection of screaming snake case strings.
///
/// Example string `SCREAMING_SNAKE_CASE`
/// Provides conversion to and detection of kebab case strings.
///
/// Example string `kebab-case`
/// Provides conversion to and detection of sentence case strings.
///
/// Example string `Sentence case`
/// Provides conversion to and detection of title case strings.
///
/// Example string `Title Case`
/// Provides conversion to and detection of table case strings.
///
/// Example string `table_cases`
/// Provides conversion to upper case strings.
///
/// Example string `UPPERCASE`
/// Provides conversion to lower case strings.
///
/// Example string `LOWERCASE`
/// Provides conversion to pascal case strings.
///
/// Example string `PascalCase`