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

cn.zplatform.appapi.bean.track.Os Maven / Gradle / Ivy

The newest version!
package cn.zplatform.appapi.bean.track;

/**
 * 手机系统 类型
 *
 * @author Lilac
 * 2020-05-22
 */
public enum Os {
    IOS("Ios"),
    ANDROID("Android"),
    WINDOWS_PHONE("Windows phone"),
    YUN_OS("YunOS"),
    SYMBIAN("Symbian");

    private final String os;

    Os(String value) {
        this.os = value;
    }
    public String value(){
        return this.os;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy