public enum QueryType extends Enum<QueryType>
| Enum Constant and Description |
|---|
FULL
Enum value full.
|
SIMPLE
Enum value simple.
|
| Modifier and Type | Method and Description |
|---|---|
static QueryType |
fromString(String value)
Parses a serialized value to a QueryType instance.
|
String |
toString() |
static QueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryType SIMPLE
public static final QueryType FULL
public static QueryType[] values()
public static QueryType 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 nullpublic static QueryType fromString(String value)
value - the serialized value to parse.Copyright © 2020 Microsoft Corporation. All rights reserved.