Class UuidParser (0.19.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
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