public enum EvidenceKind extends Enum<EvidenceKind>
| Enum Constant and Description |
|---|
AMBIGUOUS_NAME
Name is ambiguous (multiple candidates).
|
DYNAMIC_SQL_RUNTIME
Dynamic SQL requires runtime supplementation.
|
DYNAMIC_SQL_TEMPLATE
Dynamic SQL template partially parsed.
|
HEURISTIC_MATCH
Heuristic matching was used.
|
OVERLOAD_RESOLVED
Overload was resolved.
|
STATIC_RESOLVED
Statically fully resolved.
|
TYPE_INFERRED
Type was inferred.
|
| Modifier and Type | Method and Description |
|---|---|
static EvidenceKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvidenceKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvidenceKind STATIC_RESOLVED
public static final EvidenceKind DYNAMIC_SQL_TEMPLATE
public static final EvidenceKind DYNAMIC_SQL_RUNTIME
public static final EvidenceKind AMBIGUOUS_NAME
public static final EvidenceKind HEURISTIC_MATCH
public static final EvidenceKind TYPE_INFERRED
public static final EvidenceKind OVERLOAD_RESOLVED
public static EvidenceKind[] values()
for (EvidenceKind c : EvidenceKind.values()) System.out.println(c);
public static EvidenceKind 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