001 /*
002 * ===========================================================================================
003 * = COPYRIGHT
004 *          PAX Computer Technology (Shenzhen) Co., Ltd. PROPRIETARY INFORMATION
005 *   This software is supplied under the terms of a license agreement or nondisclosure
006 *   agreement with PAX Computer Technology (Shenzhen) Co., Ltd. and may not be copied or
007 *   disclosed except in accordance with the terms in that agreement.
008 *     Copyright (C) 2017-2023 PAX Computer Technology (Shenzhen) Co., Ltd. All rights reserved.
009 * Description: // Detail description about the function of this module,
010 *             // interfaces with the other modules, and dependencies.
011 * Revision History:
012 * Date                         Author                        Action
013 * 2017/04/01                   PAX                     Create/Add/Modify/Delete
014 * ===========================================================================================
015 */
016 
017package com.pax.dal.entity;
018
019public enum EFontTypeExtCode {
020
021    /**
022     * <div class="zh"> 16x16字体[基本] </div> <div class="en"> 16x16 font (Basic) </div>
023     */
024    FONT_16_16((byte) 0x00),
025    /**
026     * <div class="zh"> 24x24字体[基本] </div> <div class="en"> 24x24 font (Basic) </div>
027     */
028    FONT_24_24((byte) 0x01),
029    /**
030     * <div class="zh"> 16x16字体纵向放大 </div> <div class="en"> 16x16 font (enlarge vertically) </div>
031     */
032    FONT_16_32((byte) 0x02),
033    /**
034     * <div class="zh"> 24x24字体纵向放大 </div> <div class="en"> 24x24 font (enlarge vertically) </div>
035     */
036    FONT_24_48((byte) 0x03),
037    /**
038     * <div class="zh"> 16x16字体横向放大 </div> <div class="en"> 16x16 font (enlarge horizontally) </div>
039     */
040    FONT_32_16((byte) 0x04),
041    /**
042     * <div class="zh"> 14x24字体横向放大 </div> <div class="en"> 24x24 font (enlarge on both levels) </div>
043     */
044    FONT_48_24((byte) 0x05),
045    /**
046     * <div class="zh"> 16*16整体放大 </div> <div class="en"> 16x16 font (enlarge horizontally) </div>
047     */
048    FONT_32_32((byte) 0x06),
049    /**
050     * <div class="zh"> 24x24字体整体 </div> <div class="en"> 24x24 font (enlarge horizontally) </div>
051     */
052    FONT_48_48((byte) 0x07);
053
054    private byte fontTypeExtCode;
055
056    private EFontTypeExtCode(byte fontTypeExtCode) {
057        this.fontTypeExtCode = fontTypeExtCode;
058    }
059
060    public byte getFontTypeExtCode() {
061        return fontTypeExtCode;
062    }
063}