zhao
2021-07-02 23ee356c6f260ecc1a48bbb8bd60932b979e4698
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/* ====================================================================
   Licensed To the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for Additional information regarding copyright ownership.
   The ASF licenses this file To You under the Apache License, Version 2.0
   (the "License"), you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
       http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed To in writing, software
   distributed under the License is distributed on an "AS Is" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */
 
/* ================================================================
 * About NPOI
 * Author: Tony Qu 
 * Author's email: tonyqus (at) gmail.com 
 * Author's Blog: tonyqus.wordpress.com.cn (wp.tonyqus.cn)
 * HomePage: http://www.codeplex.com/npoi
 * Contributors:
 * 
 * ==============================================================*/
 
namespace HH.WMS.Utils.NPOI.HPSF
{
    /// <summary>
    /// Defines constants of general use.
    /// @author Rainer Klute klute@rainer-klute.de
    /// @since 2004-06-20
    /// </summary>
    public enum Constants
    {
        /// <summary>
        /// Allow accessing the Initial value.
        /// </summary>
        None = 0,
 
        /** Codepage 037, a special case */
         CP_037 = 37,
 
        /** Codepage for SJIS */
         CP_SJIS = 932,
 
        /** Codepage for GBK, aka MS936 */
         CP_GBK = 936,
 
        /** Codepage for MS949 */
         CP_MS949 = 949,
 
        /** Codepage for UTF-16 */
         CP_UTF16 = 1200,
 
        /** Codepage for UTF-16 big-endian */
         CP_UTF16_BE = 1201,
 
        /** Codepage for Windows 1250 */
         CP_WINDOWS_1250 = 1250,
 
        /** Codepage for Windows 1251 */
         CP_WINDOWS_1251 = 1251,
 
        /** Codepage for Windows 1252 */
         CP_WINDOWS_1252 = 1252,
 
        /** Codepage for Windows 1253 */
         CP_WINDOWS_1253 = 1253,
 
        /** Codepage for Windows 1254 */
         CP_WINDOWS_1254 = 1254,
 
        /** Codepage for Windows 1255 */
         CP_WINDOWS_1255 = 1255,
 
        /** Codepage for Windows 1256 */
         CP_WINDOWS_1256 = 1256,
 
        /** Codepage for Windows 1257 */
         CP_WINDOWS_1257 = 1257,
 
        /** Codepage for Windows 1258 */
         CP_WINDOWS_1258 = 1258,
 
        /** Codepage for Johab */
         CP_JOHAB = 1361,
 
        /** Codepage for Macintosh Roman (Java: MacRoman) */
         CP_MAC_ROMAN = 10000,
 
        /** Codepage for Macintosh Japan (Java: unknown - use SJIS, cp942 or
         * cp943) */
         CP_MAC_JAPAN = 10001,
 
        /** Codepage for Macintosh Chinese Traditional (Java: unknown - use Big5,
         * MS950, or cp937) */
         CP_MAC_CHINESE_TRADITIONAL = 10002,
 
        /** Codepage for Macintosh Korean (Java: unknown - use EUC_KR or
         * cp949) */
         CP_MAC_KOREAN = 10003,
 
        /** Codepage for Macintosh Arabic (Java: MacArabic) */
         CP_MAC_ARABIC = 10004,
 
        /** Codepage for Macintosh Hebrew (Java: MacHebrew) */
         CP_MAC_HEBREW = 10005,
 
        /** Codepage for Macintosh Greek (Java: MacGreek) */
         CP_MAC_GREEK = 10006,
 
        /** Codepage for Macintosh Cyrillic (Java: MacCyrillic) */
         CP_MAC_CYRILLIC = 10007,
 
        /** Codepage for Macintosh Chinese Simplified (Java: unknown - use
         * EUC_CN, ISO2022_CN_GB, MS936 or cp935) */
         CP_MAC_CHINESE_SIMPLE = 10008,
 
        /** Codepage for Macintosh Romanian (Java: MacRomania) */
         CP_MAC_ROMANIA = 10010,
 
        /** Codepage for Macintosh Ukrainian (Java: MacUkraine) */
         CP_MAC_UKRAINE = 10017,
 
        /** Codepage for Macintosh Thai (Java: MacThai) */
         CP_MAC_THAI = 10021,
 
        /** Codepage for Macintosh Central Europe (Latin-2)
         * (Java: MacCentralEurope) */
         CP_MAC_CENTRAL_EUROPE = 10029,
 
        /** Codepage for Macintosh Iceland (Java: MacIceland) */
         CP_MAC_ICELAND = 10079,
 
        /** Codepage for Macintosh Turkish (Java: MacTurkish) */
         CP_MAC_TURKISH = 10081,
 
        /** Codepage for Macintosh Croatian (Java: MacCroatian) */
         CP_MAC_CROATIAN = 10082,
 
        /** Codepage for US-ASCII */
         CP_US_ACSII = 20127,
 
        /** Codepage for KOI8-R */
         CP_KOI8_R = 20866,
 
        /** Codepage for ISO-8859-1 */
         CP_ISO_8859_1 = 28591,
 
        /** Codepage for ISO-8859-2 */
         CP_ISO_8859_2 = 28592,
 
        /** Codepage for ISO-8859-3 */
         CP_ISO_8859_3 = 28593,
 
        /** Codepage for ISO-8859-4 */
         CP_ISO_8859_4 = 28594,
 
        /** Codepage for ISO-8859-5 */
         CP_ISO_8859_5 = 28595,
 
        /** Codepage for ISO-8859-6 */
         CP_ISO_8859_6 = 28596,
 
        /** Codepage for ISO-8859-7 */
         CP_ISO_8859_7 = 28597,
 
        /** Codepage for ISO-8859-8 */
         CP_ISO_8859_8 = 28598,
 
        /** Codepage for ISO-8859-9 */
         CP_ISO_8859_9 = 28599,
 
        /** Codepage for ISO-2022-JP */
         CP_ISO_2022_JP1 = 50220,
 
        /** Another codepage for ISO-2022-JP */
         CP_ISO_2022_JP2 = 50221,
 
        /** Yet another codepage for ISO-2022-JP */
         CP_ISO_2022_JP3 = 50222,
 
        /** Codepage for ISO-2022-KR */
         CP_ISO_2022_KR = 50225,
 
        /** Codepage for EUC-JP */
         CP_EUC_JP = 51932,
 
        /** Codepage for EUC-KR */
         CP_EUC_KR = 51949,
 
        /** Codepage for GB2312 */
         CP_GB2312 = 52936,
 
        /** Codepage for GB18030 */
         CP_GB18030 = 54936,
 
        /** Another codepage for US-ASCII */
         CP_US_ASCII2 = 65000,
 
        /** Codepage for UTF-8 */
         CP_UTF8 = 65001,
 
        /** Codepage for Unicode */
         CP_UNICODE = CP_UTF16,
    }
}