public enum SendStrategyEnum extends java.lang.Enum<SendStrategyEnum>
Enum Constant and Description |
---|
APP_START
启动时发送
|
ONCE_A_DAY
每日发送
|
SET_TIME_INTERVAL
按设定的时间间隔发送
|
Modifier and Type | Method and Description |
---|---|
static SendStrategyEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SendStrategyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SendStrategyEnum APP_START
public static final SendStrategyEnum ONCE_A_DAY
public static final SendStrategyEnum SET_TIME_INTERVAL
public static SendStrategyEnum[] values()
for (SendStrategyEnum c : SendStrategyEnum.values()) System.out.println(c);
public static SendStrategyEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null