UCharacterCategory.java
2.64 KB
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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.agl.lang;
import com.adobe.agl.lang.UCharacterEnums;
public final class UCharacterCategory
implements UCharacterEnums.ECharacterCategory {
public static String toString(int category) {
switch (category) {
case 1: {
return "Letter, Uppercase";
}
case 2: {
return "Letter, Lowercase";
}
case 3: {
return "Letter, Titlecase";
}
case 4: {
return "Letter, Modifier";
}
case 5: {
return "Letter, Other";
}
case 6: {
return "Mark, Non-Spacing";
}
case 7: {
return "Mark, Enclosing";
}
case 8: {
return "Mark, Spacing Combining";
}
case 9: {
return "Number, Decimal Digit";
}
case 10: {
return "Number, Letter";
}
case 11: {
return "Number, Other";
}
case 12: {
return "Separator, Space";
}
case 13: {
return "Separator, Line";
}
case 14: {
return "Separator, Paragraph";
}
case 15: {
return "Other, Control";
}
case 16: {
return "Other, Format";
}
case 17: {
return "Other, Private Use";
}
case 18: {
return "Other, Surrogate";
}
case 19: {
return "Punctuation, Dash";
}
case 20: {
return "Punctuation, Open";
}
case 21: {
return "Punctuation, Close";
}
case 22: {
return "Punctuation, Connector";
}
case 23: {
return "Punctuation, Other";
}
case 24: {
return "Symbol, Math";
}
case 25: {
return "Symbol, Currency";
}
case 26: {
return "Symbol, Modifier";
}
case 27: {
return "Symbol, Other";
}
case 28: {
return "Punctuation, Initial quote";
}
case 29: {
return "Punctuation, Final quote";
}
}
return "Unassigned";
}
private UCharacterCategory() {
}
}