public enum PullStatus extends java.lang.Enum<PullStatus>
Enum Constant and Description |
---|
FOUND
Founded
|
NO_MATCHED_MSG
Filtering results can not match
|
NO_NEW_MSG
No new message can be pull
|
OFFSET_ILLEGAL
Illegal offset,may be too big or too small
|
Modifier and Type | Method and Description |
---|---|
static PullStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PullStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PullStatus FOUND
public static final PullStatus NO_NEW_MSG
public static final PullStatus NO_MATCHED_MSG
public static final PullStatus OFFSET_ILLEGAL
public static PullStatus[] values()
for (PullStatus c : PullStatus.values()) System.out.println(c);
public static PullStatus 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