public enum EnumQueryError extends Enum<EnumQueryError>
Enum Constant and Description |
---|
AGGREGATION_SETTINGS_INVALID |
CONFLICT_RESOLUTION_ERROR |
DATABASE_ERROR |
DEFAULT_AGGREGATION_SETTINGS_INVALID |
INVALID_QUERY_FORMAT |
QUERY_EXECUTION_SETTINGS_INVALID |
QUERY_TOO_LONG |
UNKNOWN_PREFIX |
Modifier and Type | Method and Description |
---|---|
static EnumQueryError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumQueryError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumQueryError QUERY_TOO_LONG
public static final EnumQueryError INVALID_QUERY_FORMAT
public static final EnumQueryError DEFAULT_AGGREGATION_SETTINGS_INVALID
public static final EnumQueryError AGGREGATION_SETTINGS_INVALID
public static final EnumQueryError QUERY_EXECUTION_SETTINGS_INVALID
public static final EnumQueryError DATABASE_ERROR
public static final EnumQueryError CONFLICT_RESOLUTION_ERROR
public static final EnumQueryError UNKNOWN_PREFIX
public static EnumQueryError[] values()
for (EnumQueryError c : EnumQueryError.values()) System.out.println(c);
public static EnumQueryError 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.