Package org.firebirdsql.gds.impl
Class GDSType
- java.lang.Object
-
- org.firebirdsql.gds.impl.GDSType
-
- All Implemented Interfaces:
java.io.Serializable
public final class GDSType extends java.lang.Object implements java.io.Serializable
Type-safe "enumeration" of the GDS types registered in the system.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GDSType
getType(java.lang.String type)
Factory method for instances of this class.java.lang.String
toString()
-
-
-
Method Detail
-
getType
public static GDSType getType(java.lang.String type)
Factory method for instances of this class. There's only three possible instances of this class, however linking to them directly is not always possible and desirable (for example when type is specified in configuration). This method gives the possibility to translate string representation of the type into correct type instance.- Parameters:
type
- string representation of the type to match (matching is case-insensitive). Possible values are:"PURE_JAVA"
or"TYPE4"
for pure Java (type 4) driver version;"NATIVE"
or"TYPE2"
for type 2 JDBC driver that will use Firebird client library to access the database using JNI link."EMBEDDED"
for type 2 JDBC driver that will use embedded version of the server to perform database-related operations.
- Returns:
- instance of
GDSType
corresponding to the specified string representation ornull
if no match could be found.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-