public enum SubType extends Enum<SubType>
Enum Constant and Description |
---|
alias_table |
cursor |
dblink |
function |
record |
scalar |
synonym |
unnest |
values_table |
Modifier and Type | Method and Description |
---|---|
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 scalar
public static final SubType cursor
public static final SubType record
public static final SubType function
public static final SubType unnest
public static final SubType values_table
public static final SubType alias_table
public static final SubType dblink
public static final SubType synonym
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 nullCopyright © 2023. All rights reserved.