Package | Description |
---|---|
fr.ifremer.adagio.core.dao.referential.gear |
Modifier and Type | Class and Description |
---|---|
class |
FishingGearImpl |
Modifier and Type | Method and Description |
---|---|
FishingGear |
FishingGearDaoBase.create(Boolean isActive,
Boolean isTowed,
String label,
String name,
String description,
Timestamp updateDate,
String comments)
Creates a new
FishingGear
instance from all attributes and adds it to
the persistent store. |
FishingGear |
FishingGearDao.create(Boolean isActive,
Boolean isTowed,
String label,
String name,
String description,
Timestamp updateDate,
String comments)
Creates a new
FishingGear
instance from all attributes and adds it to
the persistent store. |
FishingGear |
FishingGearDaoBase.create(FishingGear fishingGear)
Creates an instance of FishingGear and adds it to the persistent store.
|
FishingGear |
FishingGearDao.create(FishingGear fishingGear)
Creates an instance of FishingGear and adds it to the persistent store.
|
FishingGear |
FishingGearDaoBase.create(GearClassification gearClassification,
String label,
String name,
Status status,
Timestamp updateDate,
ValidityStatus validityStatus)
Creates a new
FishingGear
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
FishingGear |
FishingGearDao.create(GearClassification gearClassification,
String label,
String name,
Status status,
Timestamp updateDate,
ValidityStatus validityStatus)
Creates a new
FishingGear
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
FishingGear |
FishingGearExtendDao.createAsTemporary(String label,
String name,
Integer gearClassificationId) |
FishingGear |
FishingGearDaoImpl.createAsTemporary(String label,
String name,
Integer gearClassificationId) |
FishingGear |
FishingGearDaoBase.get(Integer id)
Gets an instance of FishingGear from the persistent store.
|
FishingGear |
FishingGearDao.get(Integer id)
Gets an instance of FishingGear from the persistent store.
|
FishingGear |
FishingGearDaoBase.load(Integer id)
Loads an instance of FishingGear from the persistent store.
|
FishingGear |
FishingGearDao.load(Integer id)
Loads an instance of FishingGear from the persistent store.
|
static FishingGear |
FishingGear.Factory.newInstance()
Constructs a new instance of
FishingGear . |
static FishingGear |
FishingGear.Factory.newInstance(String label,
String name,
String description,
Timestamp updateDate,
String comments,
Gear parentGear,
ValidityStatus validityStatus,
Collection<Gear> childGears,
GearClassification gearClassification,
Status status,
Boolean isActive,
Boolean isTowed)
Constructs a new instance of
FishingGear , taking all possible properties
(except the identifier(s))as arguments. |
static FishingGear |
FishingGear.Factory.newInstance(String label,
String name,
Timestamp updateDate,
ValidityStatus validityStatus,
GearClassification gearClassification,
Status status)
Constructs a new instance of
FishingGear , taking all required and/or
read-only properties as arguments, except for identifiers. |
protected FishingGear |
FishingGearDaoBase.toEntity(Object[] row) |
Modifier and Type | Method and Description |
---|---|
Collection<FishingGear> |
FishingGearDaoBase.create(Collection<FishingGear> entities)
Creates a new instance of FishingGear and adds
from the passed in
entities collection |
Collection<FishingGear> |
FishingGearDao.create(Collection<FishingGear> entities)
Creates a new instance of FishingGear and adds
from the passed in
entities collection |
Collection<FishingGear> |
FishingGearDaoBase.loadAll()
Loads all entities of type
FishingGear . |
Collection<FishingGear> |
FishingGearDao.loadAll()
Loads all entities of type
FishingGear . |
Set<FishingGear> |
FishingGearDaoBase.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Set<FishingGear> |
FishingGearDao.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Modifier and Type | Method and Description |
---|---|
int |
FishingGear.compareTo(FishingGear o) |
FishingGear |
FishingGearDaoBase.create(FishingGear fishingGear)
Creates an instance of FishingGear and adds it to the persistent store.
|
FishingGear |
FishingGearDao.create(FishingGear fishingGear)
Creates an instance of FishingGear and adds it to the persistent store.
|
Object |
FishingGearDaoBase.create(int transform,
FishingGear fishingGear)
Does the same thing as
FishingGearDao.create(FishingGear) with an
additional flag called transform . |
Object |
FishingGearDao.create(int transform,
FishingGear fishingGear)
Does the same thing as
FishingGearDao.create(FishingGear) with an
additional flag called transform . |
void |
FishingGearDaoBase.remove(FishingGear fishingGear)
Removes the instance of FishingGear from the persistent store.
|
void |
FishingGearDao.remove(FishingGear fishingGear)
Removes the instance of FishingGear from the persistent store.
|
Object |
FishingGearDaoBase.transformEntity(int transform,
FishingGear 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 FishingGearDao , please note
that the FishingGearDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
Object |
FishingGearDao.transformEntity(int transform,
FishingGear 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.referential.gear.FishingGearDao , please note
that the FishingGearDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
void |
FishingGearDaoBase.update(FishingGear fishingGear)
Updates the
fishingGear instance in the persistent store. |
void |
FishingGearDao.update(FishingGear fishingGear)
Updates the
fishingGear instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<FishingGear> |
FishingGearDaoBase.create(Collection<FishingGear> entities)
Creates a new instance of FishingGear and adds
from the passed in
entities collection |
Collection<FishingGear> |
FishingGearDao.create(Collection<FishingGear> entities)
Creates a new instance of FishingGear and adds
from the passed in
entities collection |
Collection<?> |
FishingGearDaoBase.create(int transform,
Collection<FishingGear> entities)
Does the same thing as
FishingGearDao.create(FishingGear) with an
additional flag called transform . |
Collection<?> |
FishingGearDao.create(int transform,
Collection<FishingGear> entities)
Does the same thing as
FishingGearDao.create(FishingGear) with an
additional flag called transform . |
void |
FishingGearDaoBase.remove(Collection<FishingGear> entities)
Removes all entities in the given
entities collection. |
void |
FishingGearDao.remove(Collection<FishingGear> entities)
Removes all entities in the given
entities collection. |
void |
FishingGearDaoBase.update(Collection<FishingGear> entities)
Updates all instances in the
entities collection in the persistent store. |
void |
FishingGearDao.update(Collection<FishingGear> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2012–2014 IFREMER. All rights reserved.