public static enum SqlValidatorImpl.Status extends Enum<SqlValidatorImpl.Status>
Enum Constant and Description |
---|
IN_PROGRESS
Validation is in progress for this scope.
|
UNVALIDATED
Validation has not started for this scope.
|
VALID
Validation has completed (perhaps unsuccessfully).
|
Modifier and Type | Method and Description |
---|---|
static SqlValidatorImpl.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlValidatorImpl.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlValidatorImpl.Status UNVALIDATED
public static final SqlValidatorImpl.Status IN_PROGRESS
public static final SqlValidatorImpl.Status VALID
public static SqlValidatorImpl.Status[] values()
for (SqlValidatorImpl.Status c : SqlValidatorImpl.Status.values()) System.out.println(c);
public static SqlValidatorImpl.Status 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 © 2014–2024 The Apache Software Foundation. All rights reserved.