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

cn.jiguang.sdk.enums.platform.Platform Maven / Gradle / Ivy

There is a newer version: 5.1.11
Show newest version
package cn.jiguang.sdk.enums.platform;

import cn.jiguang.sdk.constants.ApiConstants;

public enum Platform {

    android(ApiConstants.Platform.ANDROID, "Android平台"),
    ios(ApiConstants.Platform.IOS, "iOS平台"),
    hmos(ApiConstants.Platform.HMOS, "鸿蒙平台"),
    quickapp(ApiConstants.Platform.QUICK_APP, "快应用平台");

    private String value;
    private String description;

    Platform(String value, String description) {
        this.value = value;
        this.description = description;
    }

    public String getValue(){
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy