public static enum RoutineSummaryEdge.EndpointKind extends Enum<RoutineSummaryEdge.EndpointKind>
| Enum Constant and Description |
|---|
FORMAL
Declared formal parameter of the routine (any mode).
|
RESULT_SET_COLUMN
Terminal result-set column identified by its recorded output name.
|
TABLE_COLUMN
Physical (catalog) table column.
|
TEMP_COLUMN
Caller-visible temporary / table-variable column.
|
| Modifier and Type | Method and Description |
|---|---|
static RoutineSummaryEdge.EndpointKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoutineSummaryEdge.EndpointKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoutineSummaryEdge.EndpointKind FORMAL
public static final RoutineSummaryEdge.EndpointKind TABLE_COLUMN
public static final RoutineSummaryEdge.EndpointKind TEMP_COLUMN
public static final RoutineSummaryEdge.EndpointKind RESULT_SET_COLUMN
public static RoutineSummaryEdge.EndpointKind[] values()
for (RoutineSummaryEdge.EndpointKind c : RoutineSummaryEdge.EndpointKind.values()) System.out.println(c);
public static RoutineSummaryEdge.EndpointKind 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