public enum ResolutionStatus extends Enum<ResolutionStatus>
| Enum Constant and Description |
|---|
AMBIGUOUS
Column has multiple possible sources (ambiguous).
|
EXACT_MATCH
Column was successfully resolved to exactly one source.
|
NOT_FOUND
Column could not be resolved to any source.
|
| 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 EXACT_MATCH
public static final ResolutionStatus AMBIGUOUS
public static final ResolutionStatus NOT_FOUND
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