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

cn.jiguang.sdk.enums.event.Event Maven / Gradle / Ivy

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

public enum Event {

    update("update", "更新"),
    end("end", "结束");

    private String value;
    private String description;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy