public enum QueryParameter extends Enum<QueryParameter>
Enum Constant and Description |
---|
COMMAND
Database command to process.
|
COUNT
Number of results to print.
|
OUTPUT
Serialization parameters.
|
QUERY
Query to process.
|
REVISION
Choose revision to work on.
|
RUN
Query file to process.
|
START
First result to print.
|
VAR
External variable.
|
WRAP
Flag for wrapping results in XML elements.
|
XSL
XSL style sheet to apply to the result.
|
Modifier and Type | Method and Description |
---|---|
static QueryParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryParameter QUERY
public static final QueryParameter COMMAND
public static final QueryParameter RUN
public static final QueryParameter REVISION
public static final QueryParameter OUTPUT
public static final QueryParameter XSL
public static final QueryParameter WRAP
public static final QueryParameter START
public static final QueryParameter COUNT
public static final QueryParameter VAR
public static QueryParameter[] values()
for (QueryParameter c : QueryParameter.values()) System.out.println(c);
public static QueryParameter valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2013. All Rights Reserved.