Class ProtoEnumType (2.19.3)

public class ProtoEnumType implements SQLType

Custom SQL type for Spanner PROTO data type. This type (or the vendor type number) must be used when setting a PROTO parameter using PreparedStatement#setObject(int, Object, SQLType).

Inheritance

java.lang.Object > ProtoEnumType

Implements

SQLType

Static Fields

INSTANCE

public static final ProtoEnumType INSTANCE
Field Value
Type Description
ProtoEnumType

VENDOR_TYPE_NUMBER

public static final int VENDOR_TYPE_NUMBER

Spanner does not have any type numbers, but the code values are unique. Add 100,000 to avoid conflicts with the type numbers in java.sql.Types.

Field Value
Type Description
int

Methods

getName()

public String getName()
Returns
Type Description
String

getVendor()

public String getVendor()
Returns
Type Description
String

getVendorTypeNumber()

public Integer getVendorTypeNumber()
Returns
Type Description
Integer

toString()

public String toString()
Returns
Type Description
String
Overrides