public byte getByte(Column storeColumn) {
// In the ndb-bindings there is no getByte API, so get the result as an int
try {
return (byte)resultData.getInt(storeColumn.getName());
} catch (NdbApiException ndbApiException) {
throw new ClusterJDatastoreException(local.message("ERR_Datastore"),
ndbApiException);
}
}