public enum QueryDirectionEnum extends java.lang.Enum<QueryDirectionEnum>
| Enum Constant and Description |
|---|
QUERY_NEW
Query messages later than the anchor
|
QUERY_OLD
Query messages earlier than the anchor
|
| Modifier and Type | Method and Description |
|---|---|
static QueryDirectionEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryDirectionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryDirectionEnum QUERY_OLD
public static final QueryDirectionEnum QUERY_NEW
public static QueryDirectionEnum[] values()
for (QueryDirectionEnum c : QueryDirectionEnum.values()) System.out.println(c);
public static QueryDirectionEnum 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