Package | Description |
---|---|
fr.ifremer.adagio.core.dao.data.measure | |
fr.ifremer.adagio.core.dao.data.survey.landing |
Modifier and Type | Class and Description |
---|---|
class |
LandingMeasurementImpl |
Modifier and Type | Method and Description |
---|---|
LandingMeasurement |
LandingMeasurementDaoBase.create(Float numericalValue,
String alphanumericalValue,
Integer digitCount,
Float precisionValue,
Date controlDate,
Date validationDate,
Date qualificationDate,
String qualificationComments)
Creates a new
LandingMeasurement
instance from all attributes and adds it to
the persistent store. |
LandingMeasurement |
LandingMeasurementDao.create(Float numericalValue,
String alphanumericalValue,
Integer digitCount,
Float precisionValue,
Date controlDate,
Date validationDate,
Date qualificationDate,
String qualificationComments)
Creates a new
LandingMeasurement
instance from all attributes and adds it to
the persistent store. |
LandingMeasurement |
LandingMeasurementDaoBase.create(LandingMeasurement landingMeasurement)
Creates an instance of LandingMeasurement and adds it to the persistent store.
|
LandingMeasurement |
LandingMeasurementDao.create(LandingMeasurement landingMeasurement)
Creates an instance of LandingMeasurement and adds it to the persistent store.
|
LandingMeasurement |
LandingMeasurementDaoBase.create(Landing landing,
Pmfm pmfm,
QualityFlag qualityFlag)
Creates a new
LandingMeasurement
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
LandingMeasurement |
LandingMeasurementDao.create(Landing landing,
Pmfm pmfm,
QualityFlag qualityFlag)
Creates a new
LandingMeasurement
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
LandingMeasurement |
LandingMeasurementDaoBase.get(Integer id)
Gets an instance of LandingMeasurement from the persistent store.
|
LandingMeasurement |
LandingMeasurementDao.get(Integer id)
Gets an instance of LandingMeasurement from the persistent store.
|
LandingMeasurement |
LandingMeasurementDaoBase.load(Integer id)
Loads an instance of LandingMeasurement from the persistent store.
|
LandingMeasurement |
LandingMeasurementDao.load(Integer id)
Loads an instance of LandingMeasurement from the persistent store.
|
static LandingMeasurement |
LandingMeasurement.Factory.newInstance()
Constructs a new instance of
LandingMeasurement . |
static LandingMeasurement |
LandingMeasurement.Factory.newInstance(Float numericalValue,
String alphanumericalValue,
Integer digitCount,
Float precisionValue,
Date controlDate,
Date validationDate,
Date qualificationDate,
String qualificationComments,
AggregationLevel aggregationLevel,
QualitativeValue qualitativeValue,
QualityFlag qualityFlag,
PrecisionType precisionType,
AnalysisInstrument analysisInstrument,
Pmfm pmfm,
Department department,
NumericalPrecision numericalPrecision,
Landing landing)
Constructs a new instance of
LandingMeasurement , taking all possible properties
(except the identifier(s))as arguments. |
static LandingMeasurement |
LandingMeasurement.Factory.newInstance(QualityFlag qualityFlag,
Pmfm pmfm,
Landing landing)
Constructs a new instance of
LandingMeasurement , taking all required and/or
read-only properties as arguments, except for identifiers. |
protected LandingMeasurement |
LandingMeasurementDaoBase.toEntity(Object[] row) |
Modifier and Type | Method and Description |
---|---|
Collection<LandingMeasurement> |
LandingMeasurementDaoBase.create(Collection<LandingMeasurement> entities)
Creates a new instance of LandingMeasurement and adds
from the passed in
entities collection |
Collection<LandingMeasurement> |
LandingMeasurementDao.create(Collection<LandingMeasurement> entities)
Creates a new instance of LandingMeasurement and adds
from the passed in
entities collection |
Collection<LandingMeasurement> |
LandingMeasurementDaoBase.loadAll()
Loads all entities of type
LandingMeasurement . |
Collection<LandingMeasurement> |
LandingMeasurementDao.loadAll()
Loads all entities of type
LandingMeasurement . |
Set<LandingMeasurement> |
LandingMeasurementDaoBase.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Set<LandingMeasurement> |
LandingMeasurementDao.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Modifier and Type | Method and Description |
---|---|
int |
LandingMeasurement.compareTo(LandingMeasurement o) |
Object |
LandingMeasurementDaoBase.create(int transform,
LandingMeasurement landingMeasurement)
Does the same thing as
LandingMeasurementDao.create(LandingMeasurement) with an
additional flag called transform . |
Object |
LandingMeasurementDao.create(int transform,
LandingMeasurement landingMeasurement)
Does the same thing as
LandingMeasurementDao.create(LandingMeasurement) with an
additional flag called transform . |
LandingMeasurement |
LandingMeasurementDaoBase.create(LandingMeasurement landingMeasurement)
Creates an instance of LandingMeasurement and adds it to the persistent store.
|
LandingMeasurement |
LandingMeasurementDao.create(LandingMeasurement landingMeasurement)
Creates an instance of LandingMeasurement and adds it to the persistent store.
|
void |
LandingMeasurementDaoBase.remove(LandingMeasurement landingMeasurement)
Removes the instance of LandingMeasurement from the persistent store.
|
void |
LandingMeasurementDao.remove(LandingMeasurement landingMeasurement)
Removes the instance of LandingMeasurement from the persistent store.
|
Object |
LandingMeasurementDaoBase.transformEntity(int transform,
LandingMeasurement entity)
Allows transformation of entities into value objects
(or something else for that matter), when the
transform
flag is set to one of the constants defined in LandingMeasurementDao , please note
that the LandingMeasurementDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
Object |
LandingMeasurementDao.transformEntity(int transform,
LandingMeasurement entity)
Allows transformation of entities into value objects
(or something else for that matter), when the
transform
flag is set to one of the constants defined in fr.ifremer.adagio.core.dao.data.measure.LandingMeasurementDao , please note
that the LandingMeasurementDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
void |
LandingMeasurementDaoBase.update(LandingMeasurement landingMeasurement)
Updates the
landingMeasurement instance in the persistent store. |
void |
LandingMeasurementDao.update(LandingMeasurement landingMeasurement)
Updates the
landingMeasurement instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<LandingMeasurement> |
LandingMeasurementDaoBase.create(Collection<LandingMeasurement> entities)
Creates a new instance of LandingMeasurement and adds
from the passed in
entities collection |
Collection<LandingMeasurement> |
LandingMeasurementDao.create(Collection<LandingMeasurement> entities)
Creates a new instance of LandingMeasurement and adds
from the passed in
entities collection |
Collection<?> |
LandingMeasurementDaoBase.create(int transform,
Collection<LandingMeasurement> entities)
Does the same thing as
LandingMeasurementDao.create(LandingMeasurement) with an
additional flag called transform . |
Collection<?> |
LandingMeasurementDao.create(int transform,
Collection<LandingMeasurement> entities)
Does the same thing as
LandingMeasurementDao.create(LandingMeasurement) with an
additional flag called transform . |
void |
LandingMeasurementDaoBase.remove(Collection<LandingMeasurement> entities)
Removes all entities in the given
entities collection. |
void |
LandingMeasurementDao.remove(Collection<LandingMeasurement> entities)
Removes all entities in the given
entities collection. |
void |
LandingMeasurementDaoBase.update(Collection<LandingMeasurement> entities)
Updates all instances in the
entities collection in the persistent store. |
void |
LandingMeasurementDao.update(Collection<LandingMeasurement> entities)
Updates all instances in the
entities collection in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<LandingMeasurement> |
Landing.getLandingMeasurements() |
Modifier and Type | Method and Description |
---|---|
boolean |
Landing.addLandingMeasurements(LandingMeasurement elementToAdd) |
boolean |
Landing.removeLandingMeasurements(LandingMeasurement elementToRemove) |
Modifier and Type | Method and Description |
---|---|
static Landing |
Landing.Factory.newInstance(Date landingDateTime,
Short rankOrder,
String comments,
Date creationDate,
Date controlDate,
Date validationDate,
Date qualificationDate,
String qualificationComments,
Timestamp updateDate,
Location landingLocation,
ObservedLocation observedLocation,
Department recorderDepartment,
Person recorderPerson,
CatchBatch catchBatch,
Collection<SurveyMeasurement> surveyMeasurements,
Collection<LandingMeasurement> landingMeasurements,
Collection<Produce> produces,
QualityFlag qualityFlag,
Vessel vessel,
Collection<LandingOrigin> landingOrigins,
Program program,
SamplingStrata samplingStrata,
Collection<Sale> sales,
FishingTrip fishingTrip)
Constructs a new instance of
Landing , taking all possible properties
(except the identifier(s))as arguments. |
static ObservedLanding |
ObservedLanding.Factory.newInstance(Date landingDateTime,
Short rankOrder,
String comments,
Date creationDate,
Date controlDate,
Date validationDate,
Date qualificationDate,
String qualificationComments,
Timestamp updateDate,
Location landingLocation,
ObservedLocation observedLocation,
Department recorderDepartment,
Person recorderPerson,
CatchBatch catchBatch,
Collection<SurveyMeasurement> surveyMeasurements,
Collection<LandingMeasurement> landingMeasurements,
Collection<Produce> produces,
QualityFlag qualityFlag,
Vessel vessel,
Collection<LandingOrigin> landingOrigins,
Program program,
SamplingStrata samplingStrata,
Collection<Sale> sales,
FishingTrip fishingTrip,
Collection<ExpectedSale> expectedSales,
Collection<Person> observerPersons)
Constructs a new instance of
ObservedLanding , taking all possible properties
(except the identifier(s))as arguments. |
void |
Landing.setLandingMeasurements(Collection<LandingMeasurement> landingMeasurementsIn) |
Copyright © 2012–2014 IFREMER. All rights reserved.