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
019/**
020 * <div class="zh"> beep模式定义 </div> <div class="en"> beep mode </div>
021 * 
022 * @author Steven.W
023 * 
024 */
025public enum EBeepMode {
026
027    /**
028     * <div class="zh"> 频率0 </div> <div class="en"> frequency 0 </div>
029     */
030    FREQUENCE_LEVEL_0((byte) 0x00),
031    /**
032     * <div class="zh"> 频率1 </div> <div class="en"> frequency 1 </div>
033     */
034    FREQUENCE_LEVEL_1((byte) 0x01),
035    /**
036     * <div class="zh"> 频率2 </div> <div class="en"> frequency 2 </div>
037     */
038    FREQUENCE_LEVEL_2((byte) 0x02),
039    /**
040     * <div class="zh"> 频率3 </div> <div class="en"> frequency 3 </div>
041     */
042    FREQUENCE_LEVEL_3((byte) 0x03),
043    /**
044     * <div class="zh"> 频率4 </div> <div class="en"> frequency 4 </div>
045     */
046    FREQUENCE_LEVEL_4((byte) 0x04),
047    /**
048     * <div class="zh"> 频率5 </div> <div class="en"> frequency 5 </div>
049     */
050    FREQUENCE_LEVEL_5((byte) 0x05),
051    /**
052     * <div class="zh"> 频率6 </div> <div class="en"> frequency 6 </div>
053     */
054    FREQUENCE_LEVEL_6((byte) 0x06);
055
056    private byte beepMode;
057
058    private EBeepMode(byte beepMode) {
059        this.beepMode = beepMode;
060    }
061
062    /**
063     * <div class="zh"> 获取频率值 </div> <div class="en"> 获取频率值 </div>
064     * 
065     * @return
066     */
067    public byte getBeepMode() {
068        return beepMode;
069    }
070}