public enum PullStatus extends Enum<PullStatus>
| 枚举常量和说明 |
|---|
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
|
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(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2012–2016. All rights reserved.