public enum OracleSemanticProfile extends Enum<OracleSemanticProfile>
Stage C initially exposes the modern SQL Reference baseline. It is a named capability profile, not a claim about a particular database RU.
| Enum Constant and Description |
|---|
ORACLE_MODERN |
| Modifier and Type | Method and Description |
|---|---|
static OracleSemanticProfile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OracleSemanticProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleSemanticProfile ORACLE_MODERN
public static OracleSemanticProfile[] values()
for (OracleSemanticProfile c : OracleSemanticProfile.values()) System.out.println(c);
public static OracleSemanticProfile 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