public enum OracleVersion extends Enum<OracleVersion>
| Modifier and Type | Method and Description |
|---|---|
static OracleVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OracleVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleVersion _9i
public static final OracleVersion _10g
public static final OracleVersion _11g
public static final OracleVersion _unknown
public static OracleVersion[] values()
for (OracleVersion c : OracleVersion.values()) System.out.println(c);
public static OracleVersion 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 © 2017. All rights reserved.