Package | Description |
---|---|
fr.ifremer.adagio.core.dao.referential.grouping |
Modifier and Type | Class and Description |
---|---|
class |
GroupingItemImpl |
Modifier and Type | Method and Description |
---|---|
GroupingItem |
GroupingItemDaoBase.create(Grouping grouping)
Creates a new
GroupingItem
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
GroupingItem |
GroupingItemDao.create(Grouping grouping)
Creates a new
GroupingItem
instance from only required properties (attributes
and association ends) and adds it to the persistent store. |
GroupingItem |
GroupingItemDaoBase.create(GroupingItem groupingItem)
Creates an instance of GroupingItem and adds it to the persistent store.
|
GroupingItem |
GroupingItemDao.create(GroupingItem groupingItem)
Creates an instance of GroupingItem and adds it to the persistent store.
|
GroupingItem |
GroupingItemDaoBase.create(Integer objectId,
String objectCode,
String comments)
Creates a new
GroupingItem
instance from all attributes and adds it to
the persistent store. |
GroupingItem |
GroupingItemDao.create(Integer objectId,
String objectCode,
String comments)
Creates a new
GroupingItem
instance from all attributes and adds it to
the persistent store. |
GroupingItem |
GroupingItemDaoBase.get(Integer id)
Gets an instance of GroupingItem from the persistent store.
|
GroupingItem |
GroupingItemDao.get(Integer id)
Gets an instance of GroupingItem from the persistent store.
|
GroupingItem |
GroupingItemDaoBase.load(Integer id)
Loads an instance of GroupingItem from the persistent store.
|
GroupingItem |
GroupingItemDao.load(Integer id)
Loads an instance of GroupingItem from the persistent store.
|
static GroupingItem |
GroupingItem.Factory.newInstance()
Constructs a new instance of
GroupingItem . |
static GroupingItem |
GroupingItem.Factory.newInstance(Grouping grouping)
Constructs a new instance of
GroupingItem , taking all required and/or
read-only properties as arguments, except for identifiers. |
static GroupingItem |
GroupingItem.Factory.newInstance(Integer objectId,
String objectCode,
String comments,
Grouping grouping)
Constructs a new instance of
GroupingItem , taking all possible properties
(except the identifier(s))as arguments. |
protected GroupingItem |
GroupingItemDaoBase.toEntity(Object[] row) |
Modifier and Type | Method and Description |
---|---|
Collection<GroupingItem> |
GroupingItemDaoBase.create(Collection<GroupingItem> entities)
Creates a new instance of GroupingItem and adds
from the passed in
entities collection |
Collection<GroupingItem> |
GroupingItemDao.create(Collection<GroupingItem> entities)
Creates a new instance of GroupingItem and adds
from the passed in
entities collection |
Collection<GroupingItem> |
Grouping.getGroupingItems()
GroupingItem permet de lister les entités du référentiel qui
appartiennent à un regroupement.
|
Collection<GroupingItem> |
GroupingItemDaoBase.loadAll()
Loads all entities of type
GroupingItem . |
Collection<GroupingItem> |
GroupingItemDao.loadAll()
Loads all entities of type
GroupingItem . |
Set<GroupingItem> |
GroupingItemDaoBase.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Set<GroupingItem> |
GroupingItemDao.search(Search search)
Performs a search using the parameters specified in the given
search object. |
Modifier and Type | Method and Description |
---|---|
boolean |
Grouping.addGroupingItems(GroupingItem elementToAdd)
GroupingItem permet de lister les entités du référentiel qui
appartiennent à un regroupement.
|
int |
GroupingItem.compareTo(GroupingItem o) |
GroupingItem |
GroupingItemDaoBase.create(GroupingItem groupingItem)
Creates an instance of GroupingItem and adds it to the persistent store.
|
GroupingItem |
GroupingItemDao.create(GroupingItem groupingItem)
Creates an instance of GroupingItem and adds it to the persistent store.
|
Object |
GroupingItemDaoBase.create(int transform,
GroupingItem groupingItem)
Does the same thing as
GroupingItemDao.create(GroupingItem) with an
additional flag called transform . |
Object |
GroupingItemDao.create(int transform,
GroupingItem groupingItem)
Does the same thing as
GroupingItemDao.create(GroupingItem) with an
additional flag called transform . |
void |
GroupingItemDaoBase.remove(GroupingItem groupingItem)
Removes the instance of GroupingItem from the persistent store.
|
void |
GroupingItemDao.remove(GroupingItem groupingItem)
Removes the instance of GroupingItem from the persistent store.
|
boolean |
Grouping.removeGroupingItems(GroupingItem elementToRemove)
GroupingItem permet de lister les entités du référentiel qui
appartiennent à un regroupement.
|
Object |
GroupingItemDaoBase.transformEntity(int transform,
GroupingItem 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 GroupingItemDao , please note
that the GroupingItemDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
Object |
GroupingItemDao.transformEntity(int transform,
GroupingItem 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.grouping.GroupingItemDao , please note
that the GroupingItemDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself
will be returned. |
void |
GroupingItemDaoBase.update(GroupingItem groupingItem)
Updates the
groupingItem instance in the persistent store. |
void |
GroupingItemDao.update(GroupingItem groupingItem)
Updates the
groupingItem instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<GroupingItem> |
GroupingItemDaoBase.create(Collection<GroupingItem> entities)
Creates a new instance of GroupingItem and adds
from the passed in
entities collection |
Collection<GroupingItem> |
GroupingItemDao.create(Collection<GroupingItem> entities)
Creates a new instance of GroupingItem and adds
from the passed in
entities collection |
Collection<?> |
GroupingItemDaoBase.create(int transform,
Collection<GroupingItem> entities)
Does the same thing as
GroupingItemDao.create(GroupingItem) with an
additional flag called transform . |
Collection<?> |
GroupingItemDao.create(int transform,
Collection<GroupingItem> entities)
Does the same thing as
GroupingItemDao.create(GroupingItem) with an
additional flag called transform . |
static Grouping |
Grouping.Factory.newInstance(String label,
String name,
Double minValue,
Double maxValue,
Timestamp updateDate,
String comments,
ValidityStatus validityStatus,
Grouping parentGrouping,
Collection<Grouping> groupings,
GroupingClassification groupingClassification,
Status status,
Collection<GroupingItem> groupingItems,
GroupingLevel groupingLevel)
Constructs a new instance of
Grouping , taking all possible properties
(except the identifier(s))as arguments. |
void |
GroupingItemDaoBase.remove(Collection<GroupingItem> entities)
Removes all entities in the given
entities collection. |
void |
GroupingItemDao.remove(Collection<GroupingItem> entities)
Removes all entities in the given
entities collection. |
void |
Grouping.setGroupingItems(Collection<GroupingItem> groupingItemsIn)
GroupingItem permet de lister les entités du référentiel qui
appartiennent à un regroupement.
|
void |
GroupingItemDaoBase.update(Collection<GroupingItem> entities)
Updates all instances in the
entities collection in the persistent store. |
void |
GroupingItemDao.update(Collection<GroupingItem> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2012–2014 IFREMER. All rights reserved.