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

cn.jiguang.sdk.enums.timeunit.TimeUnit Maven / Gradle / Ivy

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

public enum TimeUnit {

    DAY("day", "为day时,point不能存在"),
    WEEK("WEEK", "为week时,point取值范围[MON,TUE,WED,THU,FRI,SAT,SUN]"),
    MONTH("MONTH", "为month时,point取值范围[01,02,03......31]");

    private String value;
    private String description;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy