public enum SubType extends Enum<SubType>
| Enum Constant and Description |
|---|
alias_table |
argument |
cursor |
dblink |
function |
in |
out |
record |
record_type |
scalar |
synonym |
temp_table |
unnest |
values_table |
| Modifier and Type | Method and Description |
|---|---|
static SubType |
of(String name) |
static SubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubType record_type
public static final SubType values_table
public static final SubType alias_table
public static final SubType temp_table
public static SubType[] values()
for (SubType c : SubType.values()) System.out.println(c);
public static SubType 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