Enum DecodeMode (6.66.0)

public enum DecodeMode extends Enum<DecodeMode>

Specifies how and when to decode a value from protobuf to a plain Java object.

Static Fields

Name Description
DIRECT

Decodes all columns of a row directly when a ResultSet is advanced to the next row with ResultSet#next()

LAZY_PER_COL

Decodes a columns of a row the first time the value of that column is retrieved from the row.

LAZY_PER_ROW

Decodes all columns of a row the first time a ResultSet value is retrieved from the row.

Static Methods

Name Description
valueOf(String name)
values()