public static enum QueryManager.QueryView extends java.lang.Enum<QueryManager.QueryView>
Enum Constant and Description |
---|
ALL
All views that the query can produce.
|
DEFAULT
The view specified by the query options.
|
FACETS
Values from different constraints for the
matched documents.
|
METADATA
Basic summary information about the matched
documents.
|
RESULTS
A list of result documents with snippets,
extracted metadata, and so on.
|
Modifier and Type | Method and Description |
---|---|
static QueryManager.QueryView |
valueOf(java.lang.String name)
Returns the enum constant of this type with the
specified name.
|
static QueryManager.QueryView[] |
values()
Returns an array containing the constants of
this enum type, in the order they are declared.
|
public static final QueryManager.QueryView DEFAULT
public static final QueryManager.QueryView RESULTS
public static final QueryManager.QueryView FACETS
public static final QueryManager.QueryView METADATA
public static final QueryManager.QueryView ALL
public static QueryManager.QueryView[] values()
for (QueryManager.QueryView c : QueryManager.QueryView.values()) System.out.println(c);
public static QueryManager.QueryView 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 nullCopyright © 2024 MarkLogic Corporation. All Rights Reserved.