Class UuidParser (0.27.1)

public class UuidParser extends Parser<String>

Translate from wire protocol to UUID. This is currently a one-way conversion, as we only accept UUID as a parameter type. UUIDs are converted to strings.

Inheritance

java.lang.Object > Parser > UuidParser

Methods

binaryParse()

protected byte[] binaryParse()

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

Returns
TypeDescription
byte[]
Overrides

bind(Statement.Builder statementBuilder, String name)

public void bind(Statement.Builder statementBuilder, String name)
Parameters
NameDescription
statementBuildercom.google.cloud.spanner.Statement.Builder
nameString
Overrides

stringParse()

public String stringParse()

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

Returns
TypeDescription
String
Overrides