public enum OracleServerVersion extends java.lang.Enum<OracleServerVersion>
| Enum Constant and Description |
|---|
Oracle10 |
Oracle11 |
Oracle7 |
Oracle8 |
Oracle9 |
| Modifier and Type | Method and Description |
|---|---|
static OracleServerVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OracleServerVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleServerVersion Oracle7
public static final OracleServerVersion Oracle8
public static final OracleServerVersion Oracle9
public static final OracleServerVersion Oracle10
public static final OracleServerVersion Oracle11
public static OracleServerVersion[] values()
for (OracleServerVersion c : OracleServerVersion.values()) System.out.println(c);
public static OracleServerVersion valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null