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/**
021 * <div class="zh"> 通讯方式定义 </div> <div class="en"> comm type </div>
022 * 
023 * @author Steven.W
024 * 
025 */
026public enum EChannelType {
027
028    /**
029     * <div class="zh"> 以太网 </div> <div class="en"> LAN </div>
030     */
031    LAN,
032    /**
033     * <div class="zh"> Wi-Fi </div> <div class="en"> Wi-Fi </div>
034     */
035    WIFI,
036    /**
037     * <div class="zh"> 移动通讯 </div> <div class="en"> MOBLIE </div>
038     */
039    MOBILE,
040    /**
041     * <div class="zh"> Modem不能简单地开关 ,以后可能会删除此通道类型</div> <div class="en">Modem cannot be simply enable and disable.we might delete it in the future.</div>
042     */
043    @Deprecated
044    MODEM,
045    /**
046     * <div class="zh"> 蓝牙 </div> <div class="en"> Bluetooth </div>
047     */
048    BT,
049    /**
050     * <div class="zh"> USBOST </div> <div class="en"> USBHOST </div>
051     */
052    USBHOST;
053}