Class StringParser (0.16.0)

public class StringParser extends Parser<String>

Translate from wire protocol to string.

Inheritance

Object > Parser > StringParser

Static Methods

binaryParse(ResultSet resultSet, int position)

public static byte[] binaryParse(ResultSet resultSet, int position)
Parameters
Name Description
resultSet com.google.cloud.spanner.ResultSet
position int
Returns
Type Description
byte[]

convertToPG(ResultSet resultSet, int position)

public static byte[] convertToPG(ResultSet resultSet, int position)
Parameters
Name Description
resultSet com.google.cloud.spanner.ResultSet
position int
Returns
Type Description
byte[]

toString(byte[] data)

public static String toString(byte[] data)

Converts the binary data to an UTF8 string.

Parameter
Name Description
data byte[]
Returns
Type Description
String

Methods

binaryParse()

protected byte[] binaryParse()

Used to parse data type onto binary. Override this to change binary representation.

Returns
Type Description
byte[]
Overrides

bind(Statement.Builder statementBuilder, String name)

public void bind(Statement.Builder statementBuilder, String name)
Parameters
Name Description
statementBuilder com.google.cloud.spanner.Statement.Builder
name String
Overrides

stringParse()

public String stringParse()

Used to parse data type into string. Override this to change the string representation.

Returns
Type Description
String
Overrides