public enum QueryStatsMode extends Enum<QueryStatsMode>
| Enum Constant and Description |
|---|
BASIC |
FULL |
NONE |
PROFILE |
UNSPECIFIED |
| Modifier and Type | Method and Description |
|---|---|
static QueryStatsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryStatsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryStatsMode NONE
public static final QueryStatsMode BASIC
public static final QueryStatsMode FULL
public static final QueryStatsMode PROFILE
public static final QueryStatsMode UNSPECIFIED
public static QueryStatsMode[] values()
for (QueryStatsMode c : QueryStatsMode.values()) System.out.println(c);
public static QueryStatsMode 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 © 2024. All rights reserved.