fr.ifremer.allegro.data.measure
Interface QuantificationMeasurementDao

All Superinterfaces:
MeasurementDao
All Known Implementing Classes:
QuantificationMeasurementDaoBase, QuantificationMeasurementDaoImpl

public interface QuantificationMeasurementDao
extends MeasurementDao

See Also:
QuantificationMeasurement

Field Summary
static int TRANSFORM_CLUSTERQUANTIFICATIONMEASUREMENT
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
static int TRANSFORM_REMOTEQUANTIFICATIONMEASUREMENTFULLVO
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
static int TRANSFORM_REMOTEQUANTIFICATIONMEASUREMENTNATURALID
          This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.
 
Fields inherited from interface fr.ifremer.allegro.data.measure.MeasurementDao
TRANSFORM_CLUSTERMEASUREMENT, TRANSFORM_NONE, TRANSFORM_REMOTEMEASUREMENTFULLVO, TRANSFORM_REMOTEMEASUREMENTNATURALID
 
Method Summary
 QuantificationMeasurement clusterQuantificationMeasurementToEntity(ClusterQuantificationMeasurement clusterQuantificationMeasurement)
          Converts an instance of type ClusterQuantificationMeasurement to this DAO's entity.
 void clusterQuantificationMeasurementToEntity(ClusterQuantificationMeasurement source, QuantificationMeasurement target, boolean copyIfNull)
          Copies the fields of ClusterQuantificationMeasurement to the specified entity.
 void clusterQuantificationMeasurementToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClusterQuantificationMeasurement to this DAO's entity.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement and adds from the passed in entities collection
 Measurement create(java.lang.Float numericalValue, java.lang.Integer digitCount, java.lang.Float precisionValue, java.util.Date controlDate, java.util.Date validationDate, java.util.Date qualificationDate, java.lang.String qualificationComments, Department department, PrecisionType precisionType, QualityFlag qualityFlag, AnalysisInstrument analysisInstrument, NumericalPrecision numericalPrecision, Pmfm pmfm, QualitativeValue qualitativeValue, AggregationLevel aggregationLevel, java.lang.Short subgroupNumber, java.lang.Boolean isReferenceQuantification, Batch batch, Produce produce)
           Creates a new fr.ifremer.allegro.data.measure.QuantificationMeasurement instance from all attributes and properties and adds it to the persistent store.
 java.util.Collection create(int transform, java.util.Collection entities)
           Does the same thing as create(fr.ifremer.allegro.data.measure.QuantificationMeasurement) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.Float numericalValue, java.lang.Integer digitCount, java.lang.Float precisionValue, java.util.Date controlDate, java.util.Date validationDate, java.util.Date qualificationDate, java.lang.String qualificationComments, Department department, PrecisionType precisionType, QualityFlag qualityFlag, AnalysisInstrument analysisInstrument, NumericalPrecision numericalPrecision, Pmfm pmfm, QualitativeValue qualitativeValue, AggregationLevel aggregationLevel, java.lang.Short subgroupNumber, java.lang.Boolean isReferenceQuantification, Batch batch, Produce produce)
           Does the same thing as create(java.lang.Float,java.lang.Integer,java.lang.Float,java.util.Date,java.util.Date,java.util.Date,java.lang.String,fr.ifremer.allegro.administration.user.Department,fr.ifremer.allegro.referential.PrecisionType,fr.ifremer.allegro.referential.QualityFlag,fr.ifremer.allegro.referential.AnalysisInstrument,fr.ifremer.allegro.referential.NumericalPrecision,fr.ifremer.allegro.referential.pmfm.Pmfm,fr.ifremer.allegro.referential.pmfm.QualitativeValue,fr.ifremer.allegro.referential.pmfm.AggregationLevel,java.lang.Short,java.lang.Boolean,fr.ifremer.allegro.data.batch.Batch,fr.ifremer.allegro.data.produce.Produce) with an additional flag called transform.
 java.lang.Object create(int transform, Pmfm pmfm, QualityFlag qualityFlag)
           Does the same thing as create(fr.ifremer.allegro.referential.pmfm.Pmfm,fr.ifremer.allegro.referential.QualityFlag) with an additional flag called transform.
 java.lang.Object create(int transform, QuantificationMeasurement quantificationMeasurement)
           Does the same thing as create(fr.ifremer.allegro.data.measure.QuantificationMeasurement) with an additional flag called transform.
 Measurement create(Pmfm pmfm, QualityFlag qualityFlag)
           Creates a new fr.ifremer.allegro.data.measure.QuantificationMeasurement instance from only required properties (attributes and association ends) and adds it to the persistent store.
 Measurement create(QuantificationMeasurement quantificationMeasurement)
          Creates an instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement and adds it to the persistent store.
 QuantificationMeasurement createFromClusterQuantificationMeasurement(ClusterQuantificationMeasurement clusterQuantificationMeasurement)
           
 java.util.Collection findQuantificationMeasurementByAggregationLevel(AggregationLevel aggregationLevel)
           
 java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform, AggregationLevel aggregationLevel)
           Does the same thing as findQuantificationMeasurementByAggregationLevel(fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByAggregationLevel(int pageNumber, int pageSize, AggregationLevel aggregationLevel)
           Does the same thing as findQuantificationMeasurementByAggregationLevel(fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform, int pageNumber, int pageSize, AggregationLevel aggregationLevel)
           Does the same thing as findQuantificationMeasurementByAggregationLevel(int, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform, java.lang.String queryString, AggregationLevel aggregationLevel)
           Does the same thing as findQuantificationMeasurementByAggregationLevel(int, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform, java.lang.String queryString, int pageNumber, int pageSize, AggregationLevel aggregationLevel)
           Does the same thing as findQuantificationMeasurementByAggregationLevel(int, String, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByAggregationLevel(java.lang.String queryString, AggregationLevel aggregationLevel)
           Does the same thing as findQuantificationMeasurementByAggregationLevel(fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByAggregationLevel(java.lang.String queryString, int pageNumber, int pageSize, AggregationLevel aggregationLevel)
           Does the same thing as findQuantificationMeasurementByAggregationLevel(String, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(AnalysisInstrument analysisInstrument)
           
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform, AnalysisInstrument analysisInstrument)
           Does the same thing as findQuantificationMeasurementByAnalysisInstrument(fr.ifremer.allegro.referential.AnalysisInstrument) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int pageNumber, int pageSize, AnalysisInstrument analysisInstrument)
           Does the same thing as findQuantificationMeasurementByAnalysisInstrument(fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform, int pageNumber, int pageSize, AnalysisInstrument analysisInstrument)
           Does the same thing as findQuantificationMeasurementByAnalysisInstrument(int, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform, java.lang.String queryString, AnalysisInstrument analysisInstrument)
           Does the same thing as findQuantificationMeasurementByAnalysisInstrument(int, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform, java.lang.String queryString, int pageNumber, int pageSize, AnalysisInstrument analysisInstrument)
           Does the same thing as findQuantificationMeasurementByAnalysisInstrument(int, String, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(java.lang.String queryString, AnalysisInstrument analysisInstrument)
           Does the same thing as findQuantificationMeasurementByAnalysisInstrument(fr.ifremer.allegro.referential.AnalysisInstrument) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByAnalysisInstrument(java.lang.String queryString, int pageNumber, int pageSize, AnalysisInstrument analysisInstrument)
           Does the same thing as findQuantificationMeasurementByAnalysisInstrument(String, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByBatch(Batch batch)
           
 java.util.Collection findQuantificationMeasurementByBatch(int transform, Batch batch)
           Does the same thing as findQuantificationMeasurementByBatch(fr.ifremer.allegro.data.batch.Batch) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByBatch(int pageNumber, int pageSize, Batch batch)
           Does the same thing as findQuantificationMeasurementByBatch(fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByBatch(int transform, int pageNumber, int pageSize, Batch batch)
           Does the same thing as findQuantificationMeasurementByBatch(int, fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByBatch(int transform, java.lang.String queryString, Batch batch)
           Does the same thing as findQuantificationMeasurementByBatch(int, fr.ifremer.allegro.data.batch.Batch) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByBatch(int transform, java.lang.String queryString, int pageNumber, int pageSize, Batch batch)
           Does the same thing as findQuantificationMeasurementByBatch(int, String, fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByBatch(java.lang.String queryString, Batch batch)
           Does the same thing as findQuantificationMeasurementByBatch(fr.ifremer.allegro.data.batch.Batch) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByBatch(java.lang.String queryString, int pageNumber, int pageSize, Batch batch)
           Does the same thing as findQuantificationMeasurementByBatch(String, fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByDepartment(Department department)
           
 java.util.Collection findQuantificationMeasurementByDepartment(int transform, Department department)
           Does the same thing as findQuantificationMeasurementByDepartment(fr.ifremer.allegro.administration.user.Department) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByDepartment(int pageNumber, int pageSize, Department department)
           Does the same thing as findQuantificationMeasurementByDepartment(fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByDepartment(int transform, int pageNumber, int pageSize, Department department)
           Does the same thing as findQuantificationMeasurementByDepartment(int, fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByDepartment(int transform, java.lang.String queryString, Department department)
           Does the same thing as findQuantificationMeasurementByDepartment(int, fr.ifremer.allegro.administration.user.Department) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByDepartment(int transform, java.lang.String queryString, int pageNumber, int pageSize, Department department)
           Does the same thing as findQuantificationMeasurementByDepartment(int, String, fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByDepartment(java.lang.String queryString, Department department)
           Does the same thing as findQuantificationMeasurementByDepartment(fr.ifremer.allegro.administration.user.Department) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByDepartment(java.lang.String queryString, int pageNumber, int pageSize, Department department)
           Does the same thing as findQuantificationMeasurementByDepartment(String, fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize.
 QuantificationMeasurement findQuantificationMeasurementById(java.lang.Integer id)
           
 java.lang.Object findQuantificationMeasurementById(int transform, java.lang.Integer id)
           Does the same thing as findQuantificationMeasurementById(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findQuantificationMeasurementById(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findQuantificationMeasurementById(int, java.lang.Integer) with an additional argument called queryString.
 QuantificationMeasurement findQuantificationMeasurementById(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findQuantificationMeasurementById(java.lang.Integer) with an additional argument called queryString.
 QuantificationMeasurement findQuantificationMeasurementByNaturalId(java.lang.Integer id)
           
 java.lang.Object findQuantificationMeasurementByNaturalId(int transform, java.lang.Integer id)
           Does the same thing as findQuantificationMeasurementByNaturalId(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findQuantificationMeasurementByNaturalId(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findQuantificationMeasurementByNaturalId(int, java.lang.Integer) with an additional argument called queryString.
 QuantificationMeasurement findQuantificationMeasurementByNaturalId(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findQuantificationMeasurementByNaturalId(java.lang.Integer) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform, int pageNumber, int pageSize, NumericalPrecision numericalPrecision)
           Does the same thing as findQuantificationMeasurementByNumericalPrecision(int, fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(int pageNumber, int pageSize, NumericalPrecision numericalPrecision)
           Does the same thing as findQuantificationMeasurementByNumericalPrecision(fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform, NumericalPrecision numericalPrecision)
           Does the same thing as findQuantificationMeasurementByNumericalPrecision(fr.ifremer.allegro.referential.NumericalPrecision) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform, java.lang.String queryString, int pageNumber, int pageSize, NumericalPrecision numericalPrecision)
           Does the same thing as findQuantificationMeasurementByNumericalPrecision(int, String, fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform, java.lang.String queryString, NumericalPrecision numericalPrecision)
           Does the same thing as findQuantificationMeasurementByNumericalPrecision(int, fr.ifremer.allegro.referential.NumericalPrecision) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(NumericalPrecision numericalPrecision)
           
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(java.lang.String queryString, int pageNumber, int pageSize, NumericalPrecision numericalPrecision)
           Does the same thing as findQuantificationMeasurementByNumericalPrecision(String, fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByNumericalPrecision(java.lang.String queryString, NumericalPrecision numericalPrecision)
           Does the same thing as findQuantificationMeasurementByNumericalPrecision(fr.ifremer.allegro.referential.NumericalPrecision) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByPmfm(int transform, int pageNumber, int pageSize, Pmfm pmfm)
           Does the same thing as findQuantificationMeasurementByPmfm(int, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPmfm(int pageNumber, int pageSize, Pmfm pmfm)
           Does the same thing as findQuantificationMeasurementByPmfm(fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPmfm(int transform, Pmfm pmfm)
           Does the same thing as findQuantificationMeasurementByPmfm(fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByPmfm(int transform, java.lang.String queryString, int pageNumber, int pageSize, Pmfm pmfm)
           Does the same thing as findQuantificationMeasurementByPmfm(int, String, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPmfm(int transform, java.lang.String queryString, Pmfm pmfm)
           Does the same thing as findQuantificationMeasurementByPmfm(int, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByPmfm(Pmfm pmfm)
           
 java.util.Collection findQuantificationMeasurementByPmfm(java.lang.String queryString, int pageNumber, int pageSize, Pmfm pmfm)
           Does the same thing as findQuantificationMeasurementByPmfm(String, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPmfm(java.lang.String queryString, Pmfm pmfm)
           Does the same thing as findQuantificationMeasurementByPmfm(fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByPrecisionType(int transform, int pageNumber, int pageSize, PrecisionType precisionType)
           Does the same thing as findQuantificationMeasurementByPrecisionType(int, fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPrecisionType(int pageNumber, int pageSize, PrecisionType precisionType)
           Does the same thing as findQuantificationMeasurementByPrecisionType(fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPrecisionType(int transform, PrecisionType precisionType)
           Does the same thing as findQuantificationMeasurementByPrecisionType(fr.ifremer.allegro.referential.PrecisionType) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByPrecisionType(int transform, java.lang.String queryString, int pageNumber, int pageSize, PrecisionType precisionType)
           Does the same thing as findQuantificationMeasurementByPrecisionType(int, String, fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPrecisionType(int transform, java.lang.String queryString, PrecisionType precisionType)
           Does the same thing as findQuantificationMeasurementByPrecisionType(int, fr.ifremer.allegro.referential.PrecisionType) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByPrecisionType(PrecisionType precisionType)
           
 java.util.Collection findQuantificationMeasurementByPrecisionType(java.lang.String queryString, int pageNumber, int pageSize, PrecisionType precisionType)
           Does the same thing as findQuantificationMeasurementByPrecisionType(String, fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByPrecisionType(java.lang.String queryString, PrecisionType precisionType)
           Does the same thing as findQuantificationMeasurementByPrecisionType(fr.ifremer.allegro.referential.PrecisionType) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByProduce(int transform, int pageNumber, int pageSize, Produce produce)
           Does the same thing as findQuantificationMeasurementByProduce(int, fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByProduce(int pageNumber, int pageSize, Produce produce)
           Does the same thing as findQuantificationMeasurementByProduce(fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByProduce(int transform, Produce produce)
           Does the same thing as findQuantificationMeasurementByProduce(fr.ifremer.allegro.data.produce.Produce) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByProduce(int transform, java.lang.String queryString, int pageNumber, int pageSize, Produce produce)
           Does the same thing as findQuantificationMeasurementByProduce(int, String, fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByProduce(int transform, java.lang.String queryString, Produce produce)
           Does the same thing as findQuantificationMeasurementByProduce(int, fr.ifremer.allegro.data.produce.Produce) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByProduce(Produce produce)
           
 java.util.Collection findQuantificationMeasurementByProduce(java.lang.String queryString, int pageNumber, int pageSize, Produce produce)
           Does the same thing as findQuantificationMeasurementByProduce(String, fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByProduce(java.lang.String queryString, Produce produce)
           Does the same thing as findQuantificationMeasurementByProduce(fr.ifremer.allegro.data.produce.Produce) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform, int pageNumber, int pageSize, QualitativeValue qualitativeValue)
           Does the same thing as findQuantificationMeasurementByQualitativeValue(int, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualitativeValue(int pageNumber, int pageSize, QualitativeValue qualitativeValue)
           Does the same thing as findQuantificationMeasurementByQualitativeValue(fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform, QualitativeValue qualitativeValue)
           Does the same thing as findQuantificationMeasurementByQualitativeValue(fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform, java.lang.String queryString, int pageNumber, int pageSize, QualitativeValue qualitativeValue)
           Does the same thing as findQuantificationMeasurementByQualitativeValue(int, String, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform, java.lang.String queryString, QualitativeValue qualitativeValue)
           Does the same thing as findQuantificationMeasurementByQualitativeValue(int, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByQualitativeValue(QualitativeValue qualitativeValue)
           
 java.util.Collection findQuantificationMeasurementByQualitativeValue(java.lang.String queryString, int pageNumber, int pageSize, QualitativeValue qualitativeValue)
           Does the same thing as findQuantificationMeasurementByQualitativeValue(String, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualitativeValue(java.lang.String queryString, QualitativeValue qualitativeValue)
           Does the same thing as findQuantificationMeasurementByQualitativeValue(fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByQualityFlag(int transform, int pageNumber, int pageSize, QualityFlag qualityFlag)
           Does the same thing as findQuantificationMeasurementByQualityFlag(int, fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualityFlag(int pageNumber, int pageSize, QualityFlag qualityFlag)
           Does the same thing as findQuantificationMeasurementByQualityFlag(fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualityFlag(int transform, QualityFlag qualityFlag)
           Does the same thing as findQuantificationMeasurementByQualityFlag(fr.ifremer.allegro.referential.QualityFlag) with an additional flag called transform.
 java.util.Collection findQuantificationMeasurementByQualityFlag(int transform, java.lang.String queryString, int pageNumber, int pageSize, QualityFlag qualityFlag)
           Does the same thing as findQuantificationMeasurementByQualityFlag(int, String, fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualityFlag(int transform, java.lang.String queryString, QualityFlag qualityFlag)
           Does the same thing as findQuantificationMeasurementByQualityFlag(int, fr.ifremer.allegro.referential.QualityFlag) with an additional argument called queryString.
 java.util.Collection findQuantificationMeasurementByQualityFlag(QualityFlag qualityFlag)
           
 java.util.Collection findQuantificationMeasurementByQualityFlag(java.lang.String queryString, int pageNumber, int pageSize, QualityFlag qualityFlag)
           Does the same thing as findQuantificationMeasurementByQualityFlag(String, fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findQuantificationMeasurementByQualityFlag(java.lang.String queryString, QualityFlag qualityFlag)
           Does the same thing as findQuantificationMeasurementByQualityFlag(fr.ifremer.allegro.referential.QualityFlag) with an additional argument called queryString.
 ClusterQuantificationMeasurement[] getAllClusterQuantificationMeasurement(java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
           
 java.util.Collection getAllQuantificationMeasurement()
           
 java.util.Collection getAllQuantificationMeasurement(int transform)
           Does the same thing as getAllQuantificationMeasurement() with an additional flag called transform.
 java.util.Collection getAllQuantificationMeasurement(int pageNumber, int pageSize)
           Does the same thing as getAllQuantificationMeasurement() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllQuantificationMeasurement(int transform, int pageNumber, int pageSize)
           Does the same thing as getAllQuantificationMeasurement(int) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllQuantificationMeasurement(int transform, java.lang.String queryString)
           Does the same thing as getAllQuantificationMeasurement(int) with an additional argument called queryString.
 java.util.Collection getAllQuantificationMeasurement(int transform, java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as getAllQuantificationMeasurement(int, String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllQuantificationMeasurement(java.lang.String queryString)
           Does the same thing as getAllQuantificationMeasurement() with an additional argument called queryString.
 java.util.Collection getAllQuantificationMeasurement(java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as getAllQuantificationMeasurement(String) with an additional two arguments called pageNumber and pageSize.
 Measurement load(java.lang.Integer id)
          Loads an instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement from the persistent store.
 java.lang.Object load(int transform, java.lang.Integer id)
           Does the same thing as load(java.lang.Integer) with an additional flag called transform.
 java.util.Collection loadAll()
          Loads all entities of type QuantificationMeasurement.
 java.util.Collection loadAll(int transform)
           Does the same thing as loadAll() with an additional flag called transform.
 java.util.Collection loadAll(int pageNumber, int pageSize)
           Does the same thing as loadAll() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection loadAll(int transform, int pageNumber, int pageSize)
           Does the same thing as loadAll(int) with an additional two arguments called pageNumber and pageSize.
 QuantificationMeasurement remoteQuantificationMeasurementFullVOToEntity(RemoteQuantificationMeasurementFullVO remoteQuantificationMeasurementFullVO)
          Converts an instance of type RemoteQuantificationMeasurementFullVO to this DAO's entity.
 void remoteQuantificationMeasurementFullVOToEntity(RemoteQuantificationMeasurementFullVO source, QuantificationMeasurement target, boolean copyIfNull)
          Copies the fields of RemoteQuantificationMeasurementFullVO to the specified entity.
 void remoteQuantificationMeasurementFullVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteQuantificationMeasurementFullVO to this DAO's entity.
 QuantificationMeasurement remoteQuantificationMeasurementNaturalIdToEntity(RemoteQuantificationMeasurementNaturalId remoteQuantificationMeasurementNaturalId)
          Converts an instance of type RemoteQuantificationMeasurementNaturalId to this DAO's entity.
 void remoteQuantificationMeasurementNaturalIdToEntity(RemoteQuantificationMeasurementNaturalId source, QuantificationMeasurement target, boolean copyIfNull)
          Copies the fields of RemoteQuantificationMeasurementNaturalId to the specified entity.
 void remoteQuantificationMeasurementNaturalIdToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteQuantificationMeasurementNaturalId to this DAO's entity.
 void remove(java.util.Collection entities)
          Removes all entities in the given entities collection.
 void remove(java.lang.Integer id)
          Removes the instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement having the given identifier from the persistent store.
 void remove(QuantificationMeasurement quantificationMeasurement)
          Removes the instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement from the persistent store.
 PaginationResult search(int transform, int pageNumber, int pageSize, Search search)
          Does the same thing as {@link #search(int, fr.ifremer.allegro.Search) but with an additional two flags called pageNumber and pageSize.
 PaginationResult search(int pageNumber, int pageSize, Search search)
          Does the same thing as {@link #search(fr.ifremer.allegro.Search) but with an additional two flags called pageNumber and pageSize.
 java.util.Set search(int transform, Search search)
          Does the same thing as search(fr.ifremer.allegro.Search) but with an additional flag called transform.
 java.util.Set search(Search search)
          Performs a search using the parameters specified in the given search object.
 ClusterQuantificationMeasurement toClusterQuantificationMeasurement(QuantificationMeasurement entity)
          Converts this DAO's entity to an object of type ClusterQuantificationMeasurement.
 void toClusterQuantificationMeasurement(QuantificationMeasurement source, ClusterQuantificationMeasurement target)
          Copies the fields of the specified entity to the target value object.
 ClusterQuantificationMeasurement[] toClusterQuantificationMeasurementArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClusterQuantificationMeasurement.
 void toClusterQuantificationMeasurementCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClusterQuantificationMeasurement.
 RemoteQuantificationMeasurementFullVO toRemoteQuantificationMeasurementFullVO(QuantificationMeasurement entity)
          Converts this DAO's entity to an object of type RemoteQuantificationMeasurementFullVO.
 void toRemoteQuantificationMeasurementFullVO(QuantificationMeasurement source, RemoteQuantificationMeasurementFullVO target)
          Copies the fields of the specified entity to the target value object.
 RemoteQuantificationMeasurementFullVO[] toRemoteQuantificationMeasurementFullVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteQuantificationMeasurementFullVO.
 void toRemoteQuantificationMeasurementFullVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteQuantificationMeasurementFullVO.
 RemoteQuantificationMeasurementNaturalId toRemoteQuantificationMeasurementNaturalId(QuantificationMeasurement entity)
          Converts this DAO's entity to an object of type RemoteQuantificationMeasurementNaturalId.
 void toRemoteQuantificationMeasurementNaturalId(QuantificationMeasurement source, RemoteQuantificationMeasurementNaturalId target)
          Copies the fields of the specified entity to the target value object.
 RemoteQuantificationMeasurementNaturalId[] toRemoteQuantificationMeasurementNaturalIdArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteQuantificationMeasurementNaturalId.
 void toRemoteQuantificationMeasurementNaturalIdCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteQuantificationMeasurementNaturalId.
 void update(java.util.Collection entities)
          Updates all instances in the entities collection in the persistent store.
 void update(QuantificationMeasurement quantificationMeasurement)
          Updates the quantificationMeasurement instance in the persistent store.
 
Methods inherited from interface fr.ifremer.allegro.data.measure.MeasurementDao
clusterMeasurementToEntity, clusterMeasurementToEntity, clusterMeasurementToEntityCollection, findMeasurementByAggregationLevel, findMeasurementByAggregationLevel, findMeasurementByAggregationLevel, findMeasurementByAggregationLevel, findMeasurementByAggregationLevel, findMeasurementByAggregationLevel, findMeasurementByAggregationLevel, findMeasurementByAggregationLevel, findMeasurementByAnalysisInstrument, findMeasurementByAnalysisInstrument, findMeasurementByAnalysisInstrument, findMeasurementByAnalysisInstrument, findMeasurementByAnalysisInstrument, findMeasurementByAnalysisInstrument, findMeasurementByAnalysisInstrument, findMeasurementByAnalysisInstrument, findMeasurementByDepartment, findMeasurementByDepartment, findMeasurementByDepartment, findMeasurementByDepartment, findMeasurementByDepartment, findMeasurementByDepartment, findMeasurementByDepartment, findMeasurementByDepartment, findMeasurementById, findMeasurementById, findMeasurementById, findMeasurementById, findMeasurementByNaturalId, findMeasurementByNaturalId, findMeasurementByNaturalId, findMeasurementByNaturalId, findMeasurementByNumericalPrecision, findMeasurementByNumericalPrecision, findMeasurementByNumericalPrecision, findMeasurementByNumericalPrecision, findMeasurementByNumericalPrecision, findMeasurementByNumericalPrecision, findMeasurementByNumericalPrecision, findMeasurementByNumericalPrecision, findMeasurementByPmfm, findMeasurementByPmfm, findMeasurementByPmfm, findMeasurementByPmfm, findMeasurementByPmfm, findMeasurementByPmfm, findMeasurementByPmfm, findMeasurementByPmfm, findMeasurementByPrecisionType, findMeasurementByPrecisionType, findMeasurementByPrecisionType, findMeasurementByPrecisionType, findMeasurementByPrecisionType, findMeasurementByPrecisionType, findMeasurementByPrecisionType, findMeasurementByPrecisionType, findMeasurementByQualitativeValue, findMeasurementByQualitativeValue, findMeasurementByQualitativeValue, findMeasurementByQualitativeValue, findMeasurementByQualitativeValue, findMeasurementByQualitativeValue, findMeasurementByQualitativeValue, findMeasurementByQualitativeValue, findMeasurementByQualityFlag, findMeasurementByQualityFlag, findMeasurementByQualityFlag, findMeasurementByQualityFlag, findMeasurementByQualityFlag, findMeasurementByQualityFlag, findMeasurementByQualityFlag, findMeasurementByQualityFlag, getAllMeasurement, getAllMeasurement, getAllMeasurement, getAllMeasurement, getAllMeasurement, getAllMeasurement, getAllMeasurement, getAllMeasurement, remoteMeasurementFullVOToEntity, remoteMeasurementFullVOToEntity, remoteMeasurementFullVOToEntityCollection, remoteMeasurementNaturalIdToEntity, remoteMeasurementNaturalIdToEntity, remoteMeasurementNaturalIdToEntityCollection, remove, toClusterMeasurement, toClusterMeasurement, toClusterMeasurementArray, toClusterMeasurementCollection, toRemoteMeasurementFullVO, toRemoteMeasurementFullVO, toRemoteMeasurementFullVOArray, toRemoteMeasurementFullVOCollection, toRemoteMeasurementNaturalId, toRemoteMeasurementNaturalId, toRemoteMeasurementNaturalIdArray, toRemoteMeasurementNaturalIdCollection, update
 

Field Detail

TRANSFORM_REMOTEQUANTIFICATIONMEASUREMENTFULLVO

static final int TRANSFORM_REMOTEQUANTIFICATIONMEASUREMENTFULLVO
This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.

This specific flag denotes entities must be transformed into objects of type RemoteQuantificationMeasurementFullVO.

See Also:
Constant Field Values

TRANSFORM_REMOTEQUANTIFICATIONMEASUREMENTNATURALID

static final int TRANSFORM_REMOTEQUANTIFICATIONMEASUREMENTNATURALID
This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.

This specific flag denotes entities must be transformed into objects of type RemoteQuantificationMeasurementNaturalId.

See Also:
Constant Field Values

TRANSFORM_CLUSTERQUANTIFICATIONMEASUREMENT

static final int TRANSFORM_CLUSTERQUANTIFICATIONMEASUREMENT
This constant is used as a transformation flag; entities can be converted automatically into value objects or other types, different methods in a class implementing this interface support this feature: look for an int parameter called transform.

This specific flag denotes entities must be transformed into objects of type ClusterQuantificationMeasurement.

See Also:
Constant Field Values
Method Detail

toRemoteQuantificationMeasurementFullVO

void toRemoteQuantificationMeasurementFullVO(QuantificationMeasurement source,
                                             RemoteQuantificationMeasurementFullVO target)
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteQuantificationMeasurementFullVO(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).


toRemoteQuantificationMeasurementFullVO

RemoteQuantificationMeasurementFullVO toRemoteQuantificationMeasurementFullVO(QuantificationMeasurement entity)
Converts this DAO's entity to an object of type RemoteQuantificationMeasurementFullVO.


toRemoteQuantificationMeasurementFullVOCollection

void toRemoteQuantificationMeasurementFullVOCollection(java.util.Collection entities)
Converts this DAO's entity to a Collection of instances of type RemoteQuantificationMeasurementFullVO.


toRemoteQuantificationMeasurementFullVOArray

RemoteQuantificationMeasurementFullVO[] toRemoteQuantificationMeasurementFullVOArray(java.util.Collection entities)
Converts this DAO's entity to an array of instances of type RemoteQuantificationMeasurementFullVO.


remoteQuantificationMeasurementFullVOToEntity

void remoteQuantificationMeasurementFullVOToEntity(RemoteQuantificationMeasurementFullVO source,
                                                   QuantificationMeasurement target,
                                                   boolean copyIfNull)
Copies the fields of RemoteQuantificationMeasurementFullVO to the specified entity.

Parameters:
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.

remoteQuantificationMeasurementFullVOToEntity

QuantificationMeasurement remoteQuantificationMeasurementFullVOToEntity(RemoteQuantificationMeasurementFullVO remoteQuantificationMeasurementFullVO)
Converts an instance of type RemoteQuantificationMeasurementFullVO to this DAO's entity.


remoteQuantificationMeasurementFullVOToEntityCollection

void remoteQuantificationMeasurementFullVOToEntityCollection(java.util.Collection instances)
Converts a Collection of instances of type RemoteQuantificationMeasurementFullVO to this DAO's entity.


toRemoteQuantificationMeasurementNaturalId

void toRemoteQuantificationMeasurementNaturalId(QuantificationMeasurement source,
                                                RemoteQuantificationMeasurementNaturalId target)
Copies the fields of the specified entity to the target value object. This method is similar to toRemoteQuantificationMeasurementNaturalId(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).


toRemoteQuantificationMeasurementNaturalId

RemoteQuantificationMeasurementNaturalId toRemoteQuantificationMeasurementNaturalId(QuantificationMeasurement entity)
Converts this DAO's entity to an object of type RemoteQuantificationMeasurementNaturalId.


toRemoteQuantificationMeasurementNaturalIdCollection

void toRemoteQuantificationMeasurementNaturalIdCollection(java.util.Collection entities)
Converts this DAO's entity to a Collection of instances of type RemoteQuantificationMeasurementNaturalId.


toRemoteQuantificationMeasurementNaturalIdArray

RemoteQuantificationMeasurementNaturalId[] toRemoteQuantificationMeasurementNaturalIdArray(java.util.Collection entities)
Converts this DAO's entity to an array of instances of type RemoteQuantificationMeasurementNaturalId.


remoteQuantificationMeasurementNaturalIdToEntity

void remoteQuantificationMeasurementNaturalIdToEntity(RemoteQuantificationMeasurementNaturalId source,
                                                      QuantificationMeasurement target,
                                                      boolean copyIfNull)
Copies the fields of RemoteQuantificationMeasurementNaturalId to the specified entity.

Parameters:
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.

remoteQuantificationMeasurementNaturalIdToEntity

QuantificationMeasurement remoteQuantificationMeasurementNaturalIdToEntity(RemoteQuantificationMeasurementNaturalId remoteQuantificationMeasurementNaturalId)
Converts an instance of type RemoteQuantificationMeasurementNaturalId to this DAO's entity.


remoteQuantificationMeasurementNaturalIdToEntityCollection

void remoteQuantificationMeasurementNaturalIdToEntityCollection(java.util.Collection instances)
Converts a Collection of instances of type RemoteQuantificationMeasurementNaturalId to this DAO's entity.


toClusterQuantificationMeasurement

void toClusterQuantificationMeasurement(QuantificationMeasurement source,
                                        ClusterQuantificationMeasurement target)
Copies the fields of the specified entity to the target value object. This method is similar to toClusterQuantificationMeasurement(), but it does not handle any attributes in the target value object that are "read-only" (as those do not have setter methods exposed).


toClusterQuantificationMeasurement

ClusterQuantificationMeasurement toClusterQuantificationMeasurement(QuantificationMeasurement entity)
Converts this DAO's entity to an object of type ClusterQuantificationMeasurement.


toClusterQuantificationMeasurementCollection

void toClusterQuantificationMeasurementCollection(java.util.Collection entities)
Converts this DAO's entity to a Collection of instances of type ClusterQuantificationMeasurement.


toClusterQuantificationMeasurementArray

ClusterQuantificationMeasurement[] toClusterQuantificationMeasurementArray(java.util.Collection entities)
Converts this DAO's entity to an array of instances of type ClusterQuantificationMeasurement.


clusterQuantificationMeasurementToEntity

void clusterQuantificationMeasurementToEntity(ClusterQuantificationMeasurement source,
                                              QuantificationMeasurement target,
                                              boolean copyIfNull)
Copies the fields of ClusterQuantificationMeasurement to the specified entity.

Parameters:
copyIfNull - If FALSE, the value object's field will not be copied to the entity if the value is NULL. If TRUE, it will be copied regardless of its value.

clusterQuantificationMeasurementToEntity

QuantificationMeasurement clusterQuantificationMeasurementToEntity(ClusterQuantificationMeasurement clusterQuantificationMeasurement)
Converts an instance of type ClusterQuantificationMeasurement to this DAO's entity.


clusterQuantificationMeasurementToEntityCollection

void clusterQuantificationMeasurementToEntityCollection(java.util.Collection instances)
Converts a Collection of instances of type ClusterQuantificationMeasurement to this DAO's entity.


load

Measurement load(java.lang.Integer id)
Loads an instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement from the persistent store.

Specified by:
load in interface MeasurementDao

load

java.lang.Object load(int transform,
                      java.lang.Integer id)

Does the same thing as load(java.lang.Integer) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined in this class then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.

Specified by:
load in interface MeasurementDao
Parameters:
id - identifier of the entity to load
Returns:
either the entity or the object transformed from the entity.

loadAll

java.util.Collection loadAll()
Loads all entities of type QuantificationMeasurement.

Specified by:
loadAll in interface MeasurementDao
Returns:
the loaded entities.

loadAll

java.util.Collection loadAll(int transform)

Does the same thing as loadAll() with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.

Specified by:
loadAll in interface MeasurementDao
Parameters:
transform - the flag indicating what transformation to use.
Returns:
the loaded entities.

loadAll

java.util.Collection loadAll(int pageNumber,
                             int pageSize)

Does the same thing as loadAll() with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.

Specified by:
loadAll in interface MeasurementDao
Parameters:
pageNumber - the page number to retrieve when paging results.
pageSize - the size of the page to retrieve when paging results.
Returns:
the loaded entities.

loadAll

java.util.Collection loadAll(int transform,
                             int pageNumber,
                             int pageSize)

Does the same thing as loadAll(int) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.

Specified by:
loadAll in interface MeasurementDao
Parameters:
transform - the flag indicating what transformation to use.
pageNumber - the page number to retrieve when paging results.
pageSize - the size of the page to retrieve when paging results.
Returns:
the loaded entities.

create

Measurement create(QuantificationMeasurement quantificationMeasurement)
Creates an instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        QuantificationMeasurement quantificationMeasurement)

Does the same thing as create(fr.ifremer.allegro.data.measure.QuantificationMeasurement) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.


create

java.util.Collection create(java.util.Collection entities)
Creates a new instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement and adds from the passed in entities collection

Parameters:
entities - the collection of fr.ifremer.allegro.data.measure.QuantificationMeasurement instances to create.
Returns:
the created instances.

create

java.util.Collection create(int transform,
                            java.util.Collection entities)

Does the same thing as create(fr.ifremer.allegro.data.measure.QuantificationMeasurement) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


create

Measurement create(java.lang.Float numericalValue,
                   java.lang.Integer digitCount,
                   java.lang.Float precisionValue,
                   java.util.Date controlDate,
                   java.util.Date validationDate,
                   java.util.Date qualificationDate,
                   java.lang.String qualificationComments,
                   Department department,
                   PrecisionType precisionType,
                   QualityFlag qualityFlag,
                   AnalysisInstrument analysisInstrument,
                   NumericalPrecision numericalPrecision,
                   Pmfm pmfm,
                   QualitativeValue qualitativeValue,
                   AggregationLevel aggregationLevel,
                   java.lang.Short subgroupNumber,
                   java.lang.Boolean isReferenceQuantification,
                   Batch batch,
                   Produce produce)

Creates a new fr.ifremer.allegro.data.measure.QuantificationMeasurement instance from all attributes and properties and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        java.lang.Float numericalValue,
                        java.lang.Integer digitCount,
                        java.lang.Float precisionValue,
                        java.util.Date controlDate,
                        java.util.Date validationDate,
                        java.util.Date qualificationDate,
                        java.lang.String qualificationComments,
                        Department department,
                        PrecisionType precisionType,
                        QualityFlag qualityFlag,
                        AnalysisInstrument analysisInstrument,
                        NumericalPrecision numericalPrecision,
                        Pmfm pmfm,
                        QualitativeValue qualitativeValue,
                        AggregationLevel aggregationLevel,
                        java.lang.Short subgroupNumber,
                        java.lang.Boolean isReferenceQuantification,
                        Batch batch,
                        Produce produce)

Does the same thing as create(java.lang.Float,java.lang.Integer,java.lang.Float,java.util.Date,java.util.Date,java.util.Date,java.lang.String,fr.ifremer.allegro.administration.user.Department,fr.ifremer.allegro.referential.PrecisionType,fr.ifremer.allegro.referential.QualityFlag,fr.ifremer.allegro.referential.AnalysisInstrument,fr.ifremer.allegro.referential.NumericalPrecision,fr.ifremer.allegro.referential.pmfm.Pmfm,fr.ifremer.allegro.referential.pmfm.QualitativeValue,fr.ifremer.allegro.referential.pmfm.AggregationLevel,java.lang.Short,java.lang.Boolean,fr.ifremer.allegro.data.batch.Batch,fr.ifremer.allegro.data.produce.Produce) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOT be transformed. If this flag is any of the other constants defined here then the result WILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.


create

Measurement create(Pmfm pmfm,
                   QualityFlag qualityFlag)

Creates a new fr.ifremer.allegro.data.measure.QuantificationMeasurement instance from only required properties (attributes and association ends) and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        Pmfm pmfm,
                        QualityFlag qualityFlag)

Does the same thing as create(fr.ifremer.allegro.referential.pmfm.Pmfm,fr.ifremer.allegro.referential.QualityFlag) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then the returned entity will NOTWILL BE passed through an operation which can optionally transform the entity (into a value object for example). By default, transformation does not occur.


update

void update(QuantificationMeasurement quantificationMeasurement)
Updates the quantificationMeasurement instance in the persistent store.


update

void update(java.util.Collection entities)
Updates all instances in the entities collection in the persistent store.

Specified by:
update in interface MeasurementDao

remove

void remove(QuantificationMeasurement quantificationMeasurement)
Removes the instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement from the persistent store.


remove

void remove(java.lang.Integer id)
Removes the instance of fr.ifremer.allegro.data.measure.QuantificationMeasurement having the given identifier from the persistent store.

Specified by:
remove in interface MeasurementDao

remove

void remove(java.util.Collection entities)
Removes all entities in the given entities collection.

Specified by:
remove in interface MeasurementDao

getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement()

getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement(java.lang.String queryString)

Does the same thing as getAllQuantificationMeasurement() with an additional argument called queryString. This queryString argument allows you to override the query string defined in getAllQuantificationMeasurement().


getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement(int pageNumber,
                                                     int pageSize)

Does the same thing as getAllQuantificationMeasurement() with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement(java.lang.String queryString,
                                                     int pageNumber,
                                                     int pageSize)

Does the same thing as getAllQuantificationMeasurement(String) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement(int transform)

Does the same thing as getAllQuantificationMeasurement() with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement(int transform,
                                                     int pageNumber,
                                                     int pageSize)

Does the same thing as getAllQuantificationMeasurement(int) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement(int transform,
                                                     java.lang.String queryString)

Does the same thing as getAllQuantificationMeasurement(int) with an additional argument called queryString. This queryString argument allows you to override the query string defined in getAllQuantificationMeasurement(int).


getAllQuantificationMeasurement

java.util.Collection getAllQuantificationMeasurement(int transform,
                                                     java.lang.String queryString,
                                                     int pageNumber,
                                                     int pageSize)

Does the same thing as getAllQuantificationMeasurement(int, String) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementById

QuantificationMeasurement findQuantificationMeasurementById(java.lang.Integer id)

findQuantificationMeasurementById

QuantificationMeasurement findQuantificationMeasurementById(java.lang.String queryString,
                                                            java.lang.Integer id)

Does the same thing as findQuantificationMeasurementById(java.lang.Integer) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementById(java.lang.Integer).


findQuantificationMeasurementById

java.lang.Object findQuantificationMeasurementById(int transform,
                                                   java.lang.Integer id)

Does the same thing as findQuantificationMeasurementById(java.lang.Integer) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementById

java.lang.Object findQuantificationMeasurementById(int transform,
                                                   java.lang.String queryString,
                                                   java.lang.Integer id)

Does the same thing as findQuantificationMeasurementById(int, java.lang.Integer) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementById(int, java.lang.Integer id).


findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(Batch batch)

findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(java.lang.String queryString,
                                                          Batch batch)

Does the same thing as findQuantificationMeasurementByBatch(fr.ifremer.allegro.data.batch.Batch) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByBatch(fr.ifremer.allegro.data.batch.Batch).


findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(int pageNumber,
                                                          int pageSize,
                                                          Batch batch)

Does the same thing as findQuantificationMeasurementByBatch(fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(java.lang.String queryString,
                                                          int pageNumber,
                                                          int pageSize,
                                                          Batch batch)

Does the same thing as findQuantificationMeasurementByBatch(String, fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(int transform,
                                                          Batch batch)

Does the same thing as findQuantificationMeasurementByBatch(fr.ifremer.allegro.data.batch.Batch) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(int transform,
                                                          int pageNumber,
                                                          int pageSize,
                                                          Batch batch)

Does the same thing as findQuantificationMeasurementByBatch(int, fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(int transform,
                                                          java.lang.String queryString,
                                                          Batch batch)

Does the same thing as findQuantificationMeasurementByBatch(int, fr.ifremer.allegro.data.batch.Batch) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByBatch(int, fr.ifremer.allegro.data.batch.Batch batch).


findQuantificationMeasurementByBatch

java.util.Collection findQuantificationMeasurementByBatch(int transform,
                                                          java.lang.String queryString,
                                                          int pageNumber,
                                                          int pageSize,
                                                          Batch batch)

Does the same thing as findQuantificationMeasurementByBatch(int, String, fr.ifremer.allegro.data.batch.Batch) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(Produce produce)

findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(java.lang.String queryString,
                                                            Produce produce)

Does the same thing as findQuantificationMeasurementByProduce(fr.ifremer.allegro.data.produce.Produce) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByProduce(fr.ifremer.allegro.data.produce.Produce).


findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(int pageNumber,
                                                            int pageSize,
                                                            Produce produce)

Does the same thing as findQuantificationMeasurementByProduce(fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            Produce produce)

Does the same thing as findQuantificationMeasurementByProduce(String, fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(int transform,
                                                            Produce produce)

Does the same thing as findQuantificationMeasurementByProduce(fr.ifremer.allegro.data.produce.Produce) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(int transform,
                                                            int pageNumber,
                                                            int pageSize,
                                                            Produce produce)

Does the same thing as findQuantificationMeasurementByProduce(int, fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(int transform,
                                                            java.lang.String queryString,
                                                            Produce produce)

Does the same thing as findQuantificationMeasurementByProduce(int, fr.ifremer.allegro.data.produce.Produce) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByProduce(int, fr.ifremer.allegro.data.produce.Produce produce).


findQuantificationMeasurementByProduce

java.util.Collection findQuantificationMeasurementByProduce(int transform,
                                                            java.lang.String queryString,
                                                            int pageNumber,
                                                            int pageSize,
                                                            Produce produce)

Does the same thing as findQuantificationMeasurementByProduce(int, String, fr.ifremer.allegro.data.produce.Produce) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(Department department)

findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(java.lang.String queryString,
                                                               Department department)

Does the same thing as findQuantificationMeasurementByDepartment(fr.ifremer.allegro.administration.user.Department) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByDepartment(fr.ifremer.allegro.administration.user.Department).


findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(int pageNumber,
                                                               int pageSize,
                                                               Department department)

Does the same thing as findQuantificationMeasurementByDepartment(fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(java.lang.String queryString,
                                                               int pageNumber,
                                                               int pageSize,
                                                               Department department)

Does the same thing as findQuantificationMeasurementByDepartment(String, fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(int transform,
                                                               Department department)

Does the same thing as findQuantificationMeasurementByDepartment(fr.ifremer.allegro.administration.user.Department) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(int transform,
                                                               int pageNumber,
                                                               int pageSize,
                                                               Department department)

Does the same thing as findQuantificationMeasurementByDepartment(int, fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(int transform,
                                                               java.lang.String queryString,
                                                               Department department)

Does the same thing as findQuantificationMeasurementByDepartment(int, fr.ifremer.allegro.administration.user.Department) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByDepartment(int, fr.ifremer.allegro.administration.user.Department department).


findQuantificationMeasurementByDepartment

java.util.Collection findQuantificationMeasurementByDepartment(int transform,
                                                               java.lang.String queryString,
                                                               int pageNumber,
                                                               int pageSize,
                                                               Department department)

Does the same thing as findQuantificationMeasurementByDepartment(int, String, fr.ifremer.allegro.administration.user.Department) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(PrecisionType precisionType)

findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(java.lang.String queryString,
                                                                  PrecisionType precisionType)

Does the same thing as findQuantificationMeasurementByPrecisionType(fr.ifremer.allegro.referential.PrecisionType) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByPrecisionType(fr.ifremer.allegro.referential.PrecisionType).


findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(int pageNumber,
                                                                  int pageSize,
                                                                  PrecisionType precisionType)

Does the same thing as findQuantificationMeasurementByPrecisionType(fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(java.lang.String queryString,
                                                                  int pageNumber,
                                                                  int pageSize,
                                                                  PrecisionType precisionType)

Does the same thing as findQuantificationMeasurementByPrecisionType(String, fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(int transform,
                                                                  PrecisionType precisionType)

Does the same thing as findQuantificationMeasurementByPrecisionType(fr.ifremer.allegro.referential.PrecisionType) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(int transform,
                                                                  int pageNumber,
                                                                  int pageSize,
                                                                  PrecisionType precisionType)

Does the same thing as findQuantificationMeasurementByPrecisionType(int, fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(int transform,
                                                                  java.lang.String queryString,
                                                                  PrecisionType precisionType)

Does the same thing as findQuantificationMeasurementByPrecisionType(int, fr.ifremer.allegro.referential.PrecisionType) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByPrecisionType(int, fr.ifremer.allegro.referential.PrecisionType precisionType).


findQuantificationMeasurementByPrecisionType

java.util.Collection findQuantificationMeasurementByPrecisionType(int transform,
                                                                  java.lang.String queryString,
                                                                  int pageNumber,
                                                                  int pageSize,
                                                                  PrecisionType precisionType)

Does the same thing as findQuantificationMeasurementByPrecisionType(int, String, fr.ifremer.allegro.referential.PrecisionType) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(QualityFlag qualityFlag)

findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(java.lang.String queryString,
                                                                QualityFlag qualityFlag)

Does the same thing as findQuantificationMeasurementByQualityFlag(fr.ifremer.allegro.referential.QualityFlag) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByQualityFlag(fr.ifremer.allegro.referential.QualityFlag).


findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(int pageNumber,
                                                                int pageSize,
                                                                QualityFlag qualityFlag)

Does the same thing as findQuantificationMeasurementByQualityFlag(fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(java.lang.String queryString,
                                                                int pageNumber,
                                                                int pageSize,
                                                                QualityFlag qualityFlag)

Does the same thing as findQuantificationMeasurementByQualityFlag(String, fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(int transform,
                                                                QualityFlag qualityFlag)

Does the same thing as findQuantificationMeasurementByQualityFlag(fr.ifremer.allegro.referential.QualityFlag) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(int transform,
                                                                int pageNumber,
                                                                int pageSize,
                                                                QualityFlag qualityFlag)

Does the same thing as findQuantificationMeasurementByQualityFlag(int, fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(int transform,
                                                                java.lang.String queryString,
                                                                QualityFlag qualityFlag)

Does the same thing as findQuantificationMeasurementByQualityFlag(int, fr.ifremer.allegro.referential.QualityFlag) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByQualityFlag(int, fr.ifremer.allegro.referential.QualityFlag qualityFlag).


findQuantificationMeasurementByQualityFlag

java.util.Collection findQuantificationMeasurementByQualityFlag(int transform,
                                                                java.lang.String queryString,
                                                                int pageNumber,
                                                                int pageSize,
                                                                QualityFlag qualityFlag)

Does the same thing as findQuantificationMeasurementByQualityFlag(int, String, fr.ifremer.allegro.referential.QualityFlag) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(AnalysisInstrument analysisInstrument)

findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(java.lang.String queryString,
                                                                       AnalysisInstrument analysisInstrument)

Does the same thing as findQuantificationMeasurementByAnalysisInstrument(fr.ifremer.allegro.referential.AnalysisInstrument) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByAnalysisInstrument(fr.ifremer.allegro.referential.AnalysisInstrument).


findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int pageNumber,
                                                                       int pageSize,
                                                                       AnalysisInstrument analysisInstrument)

Does the same thing as findQuantificationMeasurementByAnalysisInstrument(fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(java.lang.String queryString,
                                                                       int pageNumber,
                                                                       int pageSize,
                                                                       AnalysisInstrument analysisInstrument)

Does the same thing as findQuantificationMeasurementByAnalysisInstrument(String, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform,
                                                                       AnalysisInstrument analysisInstrument)

Does the same thing as findQuantificationMeasurementByAnalysisInstrument(fr.ifremer.allegro.referential.AnalysisInstrument) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform,
                                                                       int pageNumber,
                                                                       int pageSize,
                                                                       AnalysisInstrument analysisInstrument)

Does the same thing as findQuantificationMeasurementByAnalysisInstrument(int, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform,
                                                                       java.lang.String queryString,
                                                                       AnalysisInstrument analysisInstrument)

Does the same thing as findQuantificationMeasurementByAnalysisInstrument(int, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByAnalysisInstrument(int, fr.ifremer.allegro.referential.AnalysisInstrument analysisInstrument).


findQuantificationMeasurementByAnalysisInstrument

java.util.Collection findQuantificationMeasurementByAnalysisInstrument(int transform,
                                                                       java.lang.String queryString,
                                                                       int pageNumber,
                                                                       int pageSize,
                                                                       AnalysisInstrument analysisInstrument)

Does the same thing as findQuantificationMeasurementByAnalysisInstrument(int, String, fr.ifremer.allegro.referential.AnalysisInstrument) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(NumericalPrecision numericalPrecision)

findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(java.lang.String queryString,
                                                                       NumericalPrecision numericalPrecision)

Does the same thing as findQuantificationMeasurementByNumericalPrecision(fr.ifremer.allegro.referential.NumericalPrecision) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByNumericalPrecision(fr.ifremer.allegro.referential.NumericalPrecision).


findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(int pageNumber,
                                                                       int pageSize,
                                                                       NumericalPrecision numericalPrecision)

Does the same thing as findQuantificationMeasurementByNumericalPrecision(fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(java.lang.String queryString,
                                                                       int pageNumber,
                                                                       int pageSize,
                                                                       NumericalPrecision numericalPrecision)

Does the same thing as findQuantificationMeasurementByNumericalPrecision(String, fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform,
                                                                       NumericalPrecision numericalPrecision)

Does the same thing as findQuantificationMeasurementByNumericalPrecision(fr.ifremer.allegro.referential.NumericalPrecision) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform,
                                                                       int pageNumber,
                                                                       int pageSize,
                                                                       NumericalPrecision numericalPrecision)

Does the same thing as findQuantificationMeasurementByNumericalPrecision(int, fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform,
                                                                       java.lang.String queryString,
                                                                       NumericalPrecision numericalPrecision)

Does the same thing as findQuantificationMeasurementByNumericalPrecision(int, fr.ifremer.allegro.referential.NumericalPrecision) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByNumericalPrecision(int, fr.ifremer.allegro.referential.NumericalPrecision numericalPrecision).


findQuantificationMeasurementByNumericalPrecision

java.util.Collection findQuantificationMeasurementByNumericalPrecision(int transform,
                                                                       java.lang.String queryString,
                                                                       int pageNumber,
                                                                       int pageSize,
                                                                       NumericalPrecision numericalPrecision)

Does the same thing as findQuantificationMeasurementByNumericalPrecision(int, String, fr.ifremer.allegro.referential.NumericalPrecision) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(Pmfm pmfm)

findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(java.lang.String queryString,
                                                         Pmfm pmfm)

Does the same thing as findQuantificationMeasurementByPmfm(fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByPmfm(fr.ifremer.allegro.referential.pmfm.Pmfm).


findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(int pageNumber,
                                                         int pageSize,
                                                         Pmfm pmfm)

Does the same thing as findQuantificationMeasurementByPmfm(fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(java.lang.String queryString,
                                                         int pageNumber,
                                                         int pageSize,
                                                         Pmfm pmfm)

Does the same thing as findQuantificationMeasurementByPmfm(String, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(int transform,
                                                         Pmfm pmfm)

Does the same thing as findQuantificationMeasurementByPmfm(fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(int transform,
                                                         int pageNumber,
                                                         int pageSize,
                                                         Pmfm pmfm)

Does the same thing as findQuantificationMeasurementByPmfm(int, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(int transform,
                                                         java.lang.String queryString,
                                                         Pmfm pmfm)

Does the same thing as findQuantificationMeasurementByPmfm(int, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByPmfm(int, fr.ifremer.allegro.referential.pmfm.Pmfm pmfm).


findQuantificationMeasurementByPmfm

java.util.Collection findQuantificationMeasurementByPmfm(int transform,
                                                         java.lang.String queryString,
                                                         int pageNumber,
                                                         int pageSize,
                                                         Pmfm pmfm)

Does the same thing as findQuantificationMeasurementByPmfm(int, String, fr.ifremer.allegro.referential.pmfm.Pmfm) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(QualitativeValue qualitativeValue)

findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(java.lang.String queryString,
                                                                     QualitativeValue qualitativeValue)

Does the same thing as findQuantificationMeasurementByQualitativeValue(fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByQualitativeValue(fr.ifremer.allegro.referential.pmfm.QualitativeValue).


findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(int pageNumber,
                                                                     int pageSize,
                                                                     QualitativeValue qualitativeValue)

Does the same thing as findQuantificationMeasurementByQualitativeValue(fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(java.lang.String queryString,
                                                                     int pageNumber,
                                                                     int pageSize,
                                                                     QualitativeValue qualitativeValue)

Does the same thing as findQuantificationMeasurementByQualitativeValue(String, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform,
                                                                     QualitativeValue qualitativeValue)

Does the same thing as findQuantificationMeasurementByQualitativeValue(fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform,
                                                                     int pageNumber,
                                                                     int pageSize,
                                                                     QualitativeValue qualitativeValue)

Does the same thing as findQuantificationMeasurementByQualitativeValue(int, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform,
                                                                     java.lang.String queryString,
                                                                     QualitativeValue qualitativeValue)

Does the same thing as findQuantificationMeasurementByQualitativeValue(int, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByQualitativeValue(int, fr.ifremer.allegro.referential.pmfm.QualitativeValue qualitativeValue).


findQuantificationMeasurementByQualitativeValue

java.util.Collection findQuantificationMeasurementByQualitativeValue(int transform,
                                                                     java.lang.String queryString,
                                                                     int pageNumber,
                                                                     int pageSize,
                                                                     QualitativeValue qualitativeValue)

Does the same thing as findQuantificationMeasurementByQualitativeValue(int, String, fr.ifremer.allegro.referential.pmfm.QualitativeValue) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(AggregationLevel aggregationLevel)

findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(java.lang.String queryString,
                                                                     AggregationLevel aggregationLevel)

Does the same thing as findQuantificationMeasurementByAggregationLevel(fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByAggregationLevel(fr.ifremer.allegro.referential.pmfm.AggregationLevel).


findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(int pageNumber,
                                                                     int pageSize,
                                                                     AggregationLevel aggregationLevel)

Does the same thing as findQuantificationMeasurementByAggregationLevel(fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(java.lang.String queryString,
                                                                     int pageNumber,
                                                                     int pageSize,
                                                                     AggregationLevel aggregationLevel)

Does the same thing as findQuantificationMeasurementByAggregationLevel(String, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform,
                                                                     AggregationLevel aggregationLevel)

Does the same thing as findQuantificationMeasurementByAggregationLevel(fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform,
                                                                     int pageNumber,
                                                                     int pageSize,
                                                                     AggregationLevel aggregationLevel)

Does the same thing as findQuantificationMeasurementByAggregationLevel(int, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform,
                                                                     java.lang.String queryString,
                                                                     AggregationLevel aggregationLevel)

Does the same thing as findQuantificationMeasurementByAggregationLevel(int, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByAggregationLevel(int, fr.ifremer.allegro.referential.pmfm.AggregationLevel aggregationLevel).


findQuantificationMeasurementByAggregationLevel

java.util.Collection findQuantificationMeasurementByAggregationLevel(int transform,
                                                                     java.lang.String queryString,
                                                                     int pageNumber,
                                                                     int pageSize,
                                                                     AggregationLevel aggregationLevel)

Does the same thing as findQuantificationMeasurementByAggregationLevel(int, String, fr.ifremer.allegro.referential.pmfm.AggregationLevel) with an additional two arguments called pageNumber and pageSize. The pageNumber argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the page retrieved.


findQuantificationMeasurementByNaturalId

QuantificationMeasurement findQuantificationMeasurementByNaturalId(java.lang.Integer id)

findQuantificationMeasurementByNaturalId

QuantificationMeasurement findQuantificationMeasurementByNaturalId(java.lang.String queryString,
                                                                   java.lang.Integer id)

Does the same thing as findQuantificationMeasurementByNaturalId(java.lang.Integer) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByNaturalId(java.lang.Integer).


findQuantificationMeasurementByNaturalId

java.lang.Object findQuantificationMeasurementByNaturalId(int transform,
                                                          java.lang.Integer id)

Does the same thing as findQuantificationMeasurementByNaturalId(java.lang.Integer) with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then finder results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.


findQuantificationMeasurementByNaturalId

java.lang.Object findQuantificationMeasurementByNaturalId(int transform,
                                                          java.lang.String queryString,
                                                          java.lang.Integer id)

Does the same thing as findQuantificationMeasurementByNaturalId(int, java.lang.Integer) with an additional argument called queryString. This queryString argument allows you to override the query string defined in findQuantificationMeasurementByNaturalId(int, java.lang.Integer id).


createFromClusterQuantificationMeasurement

QuantificationMeasurement createFromClusterQuantificationMeasurement(ClusterQuantificationMeasurement clusterQuantificationMeasurement)

getAllClusterQuantificationMeasurement

ClusterQuantificationMeasurement[] getAllClusterQuantificationMeasurement(java.lang.Integer userId,
                                                                          java.lang.Integer[] registrationLocationIds,
                                                                          java.lang.Integer pageNumber,
                                                                          java.lang.Integer pageSize)

search

PaginationResult search(int transform,
                        int pageNumber,
                        int pageSize,
                        Search search)
Does the same thing as {@link #search(int, fr.ifremer.allegro.Search) but with an additional two flags called pageNumber and pageSize. These flags allow you to limit your data to a specified page number and size.

Specified by:
search in interface MeasurementDao
Parameters:
transform - the transformation flag.
pageNumber - the page number in the data to retrieve
pageSize - the size of the page to retrieve.
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search wrapped in a PaginationResult instance.

search

PaginationResult search(int pageNumber,
                        int pageSize,
                        Search search)
Does the same thing as {@link #search(fr.ifremer.allegro.Search) but with an additional two flags called pageNumber and pageSize. These flags allow you to limit your data to a specified page number and size.

Specified by:
search in interface MeasurementDao
Parameters:
pageNumber - the page number in the data to retrieve
pageSize - the size of the page to retrieve.
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search wrapped in a PaginationResult instance.

search

java.util.Set search(int transform,
                     Search search)
Does the same thing as search(fr.ifremer.allegro.Search) but with an additional flag called transform. If this flag is set to TRANSFORM_NONE then finder results will NOT be transformed during retrieval. If this flag is any of the other constants defined here then results WILL BE passed through an operation which can optionally transform the entities (into value objects for example). By default, transformation does not occur.

Specified by:
search in interface MeasurementDao
Parameters:
transform - the transformation flag.
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search.

search

java.util.Set search(Search search)
Performs a search using the parameters specified in the given search object.

Specified by:
search in interface MeasurementDao
Parameters:
search - the search object which provides the search parameters and pagination specification.
Returns:
any found results from the search.


Copyright © 2008-2010 IFREMER. All Rights Reserved.