public enum ValidationType extends Enum<ValidationType>
| Enum Constant and Description |
|---|
EMPTY_PARAMETER |
INVALID_OPERATOR |
MISSING_LICENSE |
QUERY_PARSING_ERROR |
UNDECLARED_PARAMETER |
UNKNOWN_FIELD |
| Modifier and Type | Method and Description |
|---|---|
static ValidationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationType UNDECLARED_PARAMETER
public static final ValidationType EMPTY_PARAMETER
public static final ValidationType QUERY_PARSING_ERROR
public static final ValidationType UNKNOWN_FIELD
public static final ValidationType INVALID_OPERATOR
public static final ValidationType MISSING_LICENSE
public static ValidationType[] values()
for (ValidationType c : ValidationType.values()) System.out.println(c);
public static ValidationType 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 © 2012–2022 Graylog, Inc.. All rights reserved.