Class RetrievedSQLRecordImpl
java.lang.Object
com.nimbusds.infinispan.persistence.sql.RetrievedSQLRecordImpl
- All Implemented Interfaces:
RetrievedSQLRecord
Retrieved SQL record implementation.
-
Constructor Summary
ConstructorsConstructorDescriptionRetrievedSQLRecordImpl
(org.jooq.Record record) Creates a new retrieved record.RetrievedSQLRecordImpl
(org.jooq.Record record, boolean fieldsToUpperCase) Creates a new retrieved record. -
Method Summary
-
Constructor Details
-
RetrievedSQLRecordImpl
Creates a new retrieved record.- Parameters:
record
- The underlying jOOQ record.
-
RetrievedSQLRecordImpl
Creates a new retrieved record.- Parameters:
record
- The underlying jOOQ record.fieldsToUpperCase
- Controls conversion of the field names to upper case.
-
-
Method Details
-
get
Description copied from interface:RetrievedSQLRecord
Gets a value from the record.- Specified by:
get
in interfaceRetrievedSQLRecord
- Parameters:
fieldName
- The field name.- Returns:
- The value of the field contained in the record.
-
get
Description copied from interface:RetrievedSQLRecord
Gets a converted value from the record.- Specified by:
get
in interfaceRetrievedSQLRecord
- Type Parameters:
U
- The conversion type parameter- Parameters:
fieldName
- The field name.type
- The conversion type- Returns:
- The value of the field contained in the record.
-
size
Description copied from interface:RetrievedSQLRecord
Gets the number of fields in the record.- Specified by:
size
in interfaceRetrievedSQLRecord
- Returns:
- The number of fields in the record.
-
toString
-