public enum FirebirdVersion extends java.lang.Enum<FirebirdVersion>
| Enum Constant and Description |
|---|
Firebird1 |
Firebird1_5 |
Firebird2 |
Firebird2_5 |
| Modifier and Type | Method and Description |
|---|---|
static FirebirdVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FirebirdVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirebirdVersion Firebird1
public static final FirebirdVersion Firebird1_5
public static final FirebirdVersion Firebird2
public static final FirebirdVersion Firebird2_5
public static FirebirdVersion[] values()
for (FirebirdVersion c : FirebirdVersion.values()) System.out.println(c);
public static FirebirdVersion 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