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

xin.alum.aim.constant.ChannelPlatform Maven / Gradle / Ivy

There is a newer version: 1.9.6
Show newest version
package xin.alum.aim.constant;

import lombok.Data;

/**
 * @auther Alum(alum @ live.cn)
 * @date 2021/8/6 10:33
 */
public enum ChannelPlatform {
    NON("NoN", 0),
    IOS("ios", 1),
    ANDROID("android", 2),
    WINDOWS("windows", 3),
    MAC("mac", 4),
    WEB("web", 5);

    private String name;
    private int value;

    ChannelPlatform(String name, int value) {
        this.name = name;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy