public enum ResolutionStatus extends Enum<ResolutionStatus>
PARSER_UNSUPPORTED > AMBIGUOUS >
UNRESOLVED_SOURCE/UNRESOLVED_TARGET > PARTIAL > GUESSED > RESOLVED.
Internal API: not part of the public gsqlparser surface.
| Enum Constant and Description |
|---|
AMBIGUOUS |
GUESSED |
PARSER_UNSUPPORTED |
PARTIAL |
RESOLVED |
UNRESOLVED_SOURCE |
UNRESOLVED_TARGET |
| Modifier and Type | Method and Description |
|---|---|
static ResolutionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResolutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolutionStatus RESOLVED
public static final ResolutionStatus PARTIAL
public static final ResolutionStatus UNRESOLVED_SOURCE
public static final ResolutionStatus UNRESOLVED_TARGET
public static final ResolutionStatus AMBIGUOUS
public static final ResolutionStatus PARSER_UNSUPPORTED
public static final ResolutionStatus GUESSED
public static ResolutionStatus[] values()
for (ResolutionStatus c : ResolutionStatus.values()) System.out.println(c);
public static ResolutionStatus 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 null