public static enum ProjectorResult.UnsupportedReason extends Enum<ProjectorResult.UnsupportedReason>
| Enum Constant and Description |
|---|
MALFORMED_XML
Dlineage XML failed to parse.
|
MULTIPLE_TERMINAL_SELECTS
Dlineage XML had zero or two-plus terminal select_list resultsets.
|
NO_RELATIONSHIPS
No relationships in the dlineage XML, or builder produced no statements.
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectorResult.UnsupportedReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectorResult.UnsupportedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectorResult.UnsupportedReason NO_RELATIONSHIPS
public static final ProjectorResult.UnsupportedReason MULTIPLE_TERMINAL_SELECTS
public static final ProjectorResult.UnsupportedReason MALFORMED_XML
public static ProjectorResult.UnsupportedReason[] values()
for (ProjectorResult.UnsupportedReason c : ProjectorResult.UnsupportedReason.values()) System.out.println(c);
public static ProjectorResult.UnsupportedReason 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