public enum OnlineInfoStatus extends java.lang.Enum<OnlineInfoStatus> implements EnumParam
| Enum Constant and Description |
|---|
LAST_MONTH |
LAST_WEEK |
LONG_AGO |
NOT_SHOW |
RECENTLY |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static OnlineInfoStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnlineInfoStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="recently") public static final OnlineInfoStatus RECENTLY
@SerializedName(value="last_week") public static final OnlineInfoStatus LAST_WEEK
@SerializedName(value="last_month") public static final OnlineInfoStatus LAST_MONTH
@SerializedName(value="long_ago") public static final OnlineInfoStatus LONG_AGO
@SerializedName(value="not_show") public static final OnlineInfoStatus NOT_SHOW
public static OnlineInfoStatus[] values()
for (OnlineInfoStatus c : OnlineInfoStatus.values()) System.out.println(c);
public static OnlineInfoStatus 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<OnlineInfoStatus>