public enum RefreshStatus extends java.lang.Enum<RefreshStatus>
| Enum Constant and Description |
|---|
DEFAULT |
LOAD_AFTER |
LOAD_BEFORE |
LOAD_CANCEL |
LOAD_COMPLETE |
LOAD_DOING |
LOAD_READY |
REFRESH_AFTER |
REFRESH_BEFORE |
REFRESH_CANCEL |
REFRESH_COMPLETE |
REFRESH_DOING |
REFRESH_READY |
| Modifier and Type | Method and Description |
|---|---|
static RefreshStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RefreshStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefreshStatus DEFAULT
public static final RefreshStatus REFRESH_BEFORE
public static final RefreshStatus REFRESH_AFTER
public static final RefreshStatus REFRESH_READY
public static final RefreshStatus REFRESH_DOING
public static final RefreshStatus REFRESH_COMPLETE
public static final RefreshStatus REFRESH_CANCEL
public static final RefreshStatus LOAD_BEFORE
public static final RefreshStatus LOAD_AFTER
public static final RefreshStatus LOAD_READY
public static final RefreshStatus LOAD_DOING
public static final RefreshStatus LOAD_COMPLETE
public static final RefreshStatus LOAD_CANCEL
public static RefreshStatus[] values()
for (RefreshStatus c : RefreshStatus.values()) System.out.println(c);
public static RefreshStatus 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