All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ttzero.excel.entity.style.Charset Maven / Gradle / Ivy

/*
 * Copyright (c) 2019, [email protected] All Rights Reserved.
 *
 * Licensed 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.
 */

package org.ttzero.excel.entity.style;

/**
 * Created by guanquan.wang at 2018-02-08 17:05
 */
public class Charset {
    public static final int ANSI = 0x00 // ANSI Latin
        , DEFAULT = 0x01  // not a real charset; rather
        // , it is a constant akin to NULL that means
        // "show characters in whatever charsets are available."
        , SYMBOL = 0x02 //  Symbol
        , SHIFTJIS = 0x80 // 日文
        , HANGUL = 0x81 // 韩国、朝鲜
        , JOHAB = 0x82 //  ANSI Korean (Johab)
        , GB2312 = 0x86 // 简体
        , CHINESEBIG5 = 0x88 // 繁体
        , GREEK = 0xA1 //  ANSI Greek
        , TURKISH = 0xA2 // ANSI Turkish
        , HEBREW = 0xB1 // ANSI Hebrew
        , ARABIC = 0xB2 // ANSI Arabic
        , BALTIC = 0xBA // ANSI Baltic
        , RUSSIAN = 0xCC // ANSI Cyrillic
        , THAI = 0xDE //  ANSI Thai
        , EE = 0xEE // ANSI Latin II (Central European)
        , OEM = 0xFF // OEM Latin I
        ;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy