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