fr.ifremer.allegro.referential.taxon
Interface TaxonNameDao

All Known Implementing Classes:
TaxonNameDaoBase, TaxonNameDaoImpl

public interface TaxonNameDao

See Also:
TaxonName

Field Summary
static int TRANSFORM_CLUSTERTAXONNAME
          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_NONE
          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_REMOTETAXONNAMEFULLVO
          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_REMOTETAXONNAMENATURALID
          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.
 
Method Summary
 TaxonName clusterTaxonNameToEntity(ClusterTaxonName clusterTaxonName)
          Converts an instance of type ClusterTaxonName to this DAO's entity.
 void clusterTaxonNameToEntity(ClusterTaxonName source, TaxonName target, boolean copyIfNull)
          Copies the fields of ClusterTaxonName to the specified entity.
 void clusterTaxonNameToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type ClusterTaxonName to this DAO's entity.
 java.util.Collection create(java.util.Collection entities)
          Creates a new instance of fr.ifremer.allegro.referential.taxon.TaxonName and adds from the passed in entities collection
 TaxonName create(java.util.Date creationDate, java.lang.Boolean isNaming, java.lang.Boolean isObsolete, java.lang.Boolean isReferent, java.lang.Boolean isTemporary, java.lang.Boolean isVirtual, java.lang.String name, ReferenceTaxon referenceTaxon, java.util.Date startDate, TaxonomicLevel taxonomicLevel, java.lang.Integer upperRank)
           Creates a new fr.ifremer.allegro.referential.taxon.TaxonName instance from only required properties (attributes and association ends) 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.referential.taxon.TaxonName) with an additional flag called transform.
 java.lang.Object create(int transform, java.util.Date creationDate, java.lang.Boolean isNaming, java.lang.Boolean isObsolete, java.lang.Boolean isReferent, java.lang.Boolean isTemporary, java.lang.Boolean isVirtual, java.lang.String name, ReferenceTaxon referenceTaxon, java.util.Date startDate, TaxonomicLevel taxonomicLevel, java.lang.Integer upperRank)
           Does the same thing as create(java.util.Date,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Date,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.lang.Integer) with an additional flag called transform.
 java.lang.Object create(int transform, java.lang.String name, java.lang.String completeName, java.lang.Boolean isNaming, java.lang.Boolean isReferent, java.lang.Integer upperRank, java.lang.Boolean isVirtual, java.lang.Boolean isObsolete, java.lang.Boolean isTemporary, java.util.Date startDate, java.util.Date endDate, java.lang.String comments, java.util.Date creationDate, java.sql.Timestamp updateDate, ReferenceTaxon referenceTaxon, java.util.Collection childTaxonNames, TaxonName parentTaxonName, TaxonomicLevel taxonomicLevel, java.util.Collection taxonNamehistory, java.util.Collection parentTaxonNameHistory, Citation citation)
           Does the same thing as create(java.lang.String,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.util.Date,java.util.Date,java.lang.String,java.util.Date,java.sql.Timestamp,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Collection,fr.ifremer.allegro.referential.taxon.TaxonName,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.util.Collection,java.util.Collection,fr.ifremer.allegro.referential.taxon.Citation) with an additional flag called transform.
 java.lang.Object create(int transform, TaxonName taxonName)
           Does the same thing as create(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional flag called transform.
 TaxonName create(java.lang.String name, java.lang.String completeName, java.lang.Boolean isNaming, java.lang.Boolean isReferent, java.lang.Integer upperRank, java.lang.Boolean isVirtual, java.lang.Boolean isObsolete, java.lang.Boolean isTemporary, java.util.Date startDate, java.util.Date endDate, java.lang.String comments, java.util.Date creationDate, java.sql.Timestamp updateDate, ReferenceTaxon referenceTaxon, java.util.Collection childTaxonNames, TaxonName parentTaxonName, TaxonomicLevel taxonomicLevel, java.util.Collection taxonNamehistory, java.util.Collection parentTaxonNameHistory, Citation citation)
           Creates a new fr.ifremer.allegro.referential.taxon.TaxonName instance from all attributes and properties and adds it to the persistent store.
 TaxonName create(TaxonName taxonName)
          Creates an instance of fr.ifremer.allegro.referential.taxon.TaxonName and adds it to the persistent store.
 TaxonName createFromClusterTaxonName(ClusterTaxonName clusterTaxonName)
           
 java.util.Collection findTaxonNameByCitation(Citation citation)
           
 java.util.Collection findTaxonNameByCitation(int transform, Citation citation)
           Does the same thing as findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) with an additional flag called transform.
 java.util.Collection findTaxonNameByCitation(int pageNumber, int pageSize, Citation citation)
           Does the same thing as findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByCitation(int transform, int pageNumber, int pageSize, Citation citation)
           Does the same thing as findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByCitation(int transform, java.lang.String queryString, Citation citation)
           Does the same thing as findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation) with an additional argument called queryString.
 java.util.Collection findTaxonNameByCitation(int transform, java.lang.String queryString, int pageNumber, int pageSize, Citation citation)
           Does the same thing as findTaxonNameByCitation(int, String, fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByCitation(java.lang.String queryString, Citation citation)
           Does the same thing as findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) with an additional argument called queryString.
 java.util.Collection findTaxonNameByCitation(java.lang.String queryString, int pageNumber, int pageSize, Citation citation)
           Does the same thing as findTaxonNameByCitation(String, fr.ifremer.allegro.referential.taxon.Citation) with an additional two arguments called pageNumber and pageSize.
 TaxonName findTaxonNameById(java.lang.Integer id)
           
 java.lang.Object findTaxonNameById(int transform, java.lang.Integer id)
           Does the same thing as findTaxonNameById(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findTaxonNameById(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findTaxonNameById(int, java.lang.Integer) with an additional argument called queryString.
 TaxonName findTaxonNameById(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findTaxonNameById(java.lang.Integer) with an additional argument called queryString.
 TaxonName findTaxonNameByNaturalId(java.lang.Integer id)
           
 java.lang.Object findTaxonNameByNaturalId(int transform, java.lang.Integer id)
           Does the same thing as findTaxonNameByNaturalId(java.lang.Integer) with an additional flag called transform.
 java.lang.Object findTaxonNameByNaturalId(int transform, java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findTaxonNameByNaturalId(int, java.lang.Integer) with an additional argument called queryString.
 TaxonName findTaxonNameByNaturalId(java.lang.String queryString, java.lang.Integer id)
           Does the same thing as findTaxonNameByNaturalId(java.lang.Integer) with an additional argument called queryString.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, java.lang.String queryString, int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as findTaxonNameByParentTaxonName(int, String, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, java.lang.String queryString, TaxonName parentTaxonName)
           Does the same thing as findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional argument called queryString.
 java.util.Collection findTaxonNameByParentTaxonName(int transform, TaxonName parentTaxonName)
           Does the same thing as findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional flag called transform.
 java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString, int pageNumber, int pageSize, TaxonName parentTaxonName)
           Does the same thing as findTaxonNameByParentTaxonName(String, fr.ifremer.allegro.referential.taxon.TaxonName) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString, TaxonName parentTaxonName)
           Does the same thing as findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) with an additional argument called queryString.
 java.util.Collection findTaxonNameByParentTaxonName(TaxonName parentTaxonName)
           
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, ReferenceTaxon referenceTaxon)
           Does the same thing as findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional flag called transform.
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, java.lang.String queryString, int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as findTaxonNameByReferenceTaxon(int, String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(int transform, java.lang.String queryString, ReferenceTaxon referenceTaxon)
           Does the same thing as findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional argument called queryString.
 java.util.Collection findTaxonNameByReferenceTaxon(ReferenceTaxon referenceTaxon)
           
 java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString, int pageNumber, int pageSize, ReferenceTaxon referenceTaxon)
           Does the same thing as findTaxonNameByReferenceTaxon(String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString, ReferenceTaxon referenceTaxon)
           Does the same thing as findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) with an additional argument called queryString.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, java.lang.String queryString, int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as findTaxonNameByTaxonomicLevel(int, String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, java.lang.String queryString, TaxonomicLevel taxonomicLevel)
           Does the same thing as findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional argument called queryString.
 java.util.Collection findTaxonNameByTaxonomicLevel(int transform, TaxonomicLevel taxonomicLevel)
           Does the same thing as findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional flag called transform.
 java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString, int pageNumber, int pageSize, TaxonomicLevel taxonomicLevel)
           Does the same thing as findTaxonNameByTaxonomicLevel(String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString, TaxonomicLevel taxonomicLevel)
           Does the same thing as findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) with an additional argument called queryString.
 java.util.Collection findTaxonNameByTaxonomicLevel(TaxonomicLevel taxonomicLevel)
           
 ClusterTaxonName[] getAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp, java.lang.Integer userId, java.lang.Integer[] registrationLocationIds, java.lang.Integer pageNumber, java.lang.Integer pageSize)
           
 java.util.Collection getAllTaxonName()
           
 java.util.Collection getAllTaxonName(int transform)
           Does the same thing as getAllTaxonName() with an additional flag called transform.
 java.util.Collection getAllTaxonName(int pageNumber, int pageSize)
           Does the same thing as getAllTaxonName() with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonName(int transform, int pageNumber, int pageSize)
           Does the same thing as getAllTaxonName(int) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonName(int transform, java.lang.String queryString)
           Does the same thing as getAllTaxonName(int) with an additional argument called queryString.
 java.util.Collection getAllTaxonName(int transform, java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as getAllTaxonName(int, String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonName(java.lang.String queryString)
           Does the same thing as getAllTaxonName() with an additional argument called queryString.
 java.util.Collection getAllTaxonName(java.lang.String queryString, int pageNumber, int pageSize)
           Does the same thing as getAllTaxonName(String) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTaxonNameSinceDateSynchro(int, String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllTaxonNameSinceDateSynchro(int transform, java.sql.Timestamp updateDate)
           Does the same thing as getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) with an additional flag called transform.
 java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString, int pageNumber, int pageSize, java.sql.Timestamp updateDate)
           Does the same thing as getAllTaxonNameSinceDateSynchro(String, java.sql.Timestamp) with an additional two arguments called pageNumber and pageSize.
 java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString, java.sql.Timestamp updateDate)
           Does the same thing as getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) with an additional argument called queryString.
 java.util.Collection getAllTaxonNameSinceDateSynchro(java.sql.Timestamp updateDate)
           
 TaxonName load(java.lang.Integer id)
          Loads an instance of fr.ifremer.allegro.referential.taxon.TaxonName 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 TaxonName.
 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.
 TaxonName remoteTaxonNameFullVOToEntity(RemoteTaxonNameFullVO remoteTaxonNameFullVO)
          Converts an instance of type RemoteTaxonNameFullVO to this DAO's entity.
 void remoteTaxonNameFullVOToEntity(RemoteTaxonNameFullVO source, TaxonName target, boolean copyIfNull)
          Copies the fields of RemoteTaxonNameFullVO to the specified entity.
 void remoteTaxonNameFullVOToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteTaxonNameFullVO to this DAO's entity.
 TaxonName remoteTaxonNameNaturalIdToEntity(RemoteTaxonNameNaturalId remoteTaxonNameNaturalId)
          Converts an instance of type RemoteTaxonNameNaturalId to this DAO's entity.
 void remoteTaxonNameNaturalIdToEntity(RemoteTaxonNameNaturalId source, TaxonName target, boolean copyIfNull)
          Copies the fields of RemoteTaxonNameNaturalId to the specified entity.
 void remoteTaxonNameNaturalIdToEntityCollection(java.util.Collection instances)
          Converts a Collection of instances of type RemoteTaxonNameNaturalId 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.referential.taxon.TaxonName having the given identifier from the persistent store.
 void remove(TaxonName taxonName)
          Removes the instance of fr.ifremer.allegro.referential.taxon.TaxonName 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.
 ClusterTaxonName toClusterTaxonName(TaxonName entity)
          Converts this DAO's entity to an object of type ClusterTaxonName.
 void toClusterTaxonName(TaxonName source, ClusterTaxonName target)
          Copies the fields of the specified entity to the target value object.
 ClusterTaxonName[] toClusterTaxonNameArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type ClusterTaxonName.
 void toClusterTaxonNameCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type ClusterTaxonName.
 RemoteTaxonNameFullVO toRemoteTaxonNameFullVO(TaxonName entity)
          Converts this DAO's entity to an object of type RemoteTaxonNameFullVO.
 void toRemoteTaxonNameFullVO(TaxonName source, RemoteTaxonNameFullVO target)
          Copies the fields of the specified entity to the target value object.
 RemoteTaxonNameFullVO[] toRemoteTaxonNameFullVOArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteTaxonNameFullVO.
 void toRemoteTaxonNameFullVOCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteTaxonNameFullVO.
 RemoteTaxonNameNaturalId toRemoteTaxonNameNaturalId(TaxonName entity)
          Converts this DAO's entity to an object of type RemoteTaxonNameNaturalId.
 void toRemoteTaxonNameNaturalId(TaxonName source, RemoteTaxonNameNaturalId target)
          Copies the fields of the specified entity to the target value object.
 RemoteTaxonNameNaturalId[] toRemoteTaxonNameNaturalIdArray(java.util.Collection entities)
          Converts this DAO's entity to an array of instances of type RemoteTaxonNameNaturalId.
 void toRemoteTaxonNameNaturalIdCollection(java.util.Collection entities)
          Converts this DAO's entity to a Collection of instances of type RemoteTaxonNameNaturalId.
 void update(java.util.Collection entities)
          Updates all instances in the entities collection in the persistent store.
 void update(TaxonName taxonName)
          Updates the taxonName instance in the persistent store.
 

Field Detail

TRANSFORM_NONE

static final int TRANSFORM_NONE
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 no transformation will occur.

See Also:
Constant Field Values

TRANSFORM_REMOTETAXONNAMEFULLVO

static final int TRANSFORM_REMOTETAXONNAMEFULLVO
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 RemoteTaxonNameFullVO.

See Also:
Constant Field Values

TRANSFORM_REMOTETAXONNAMENATURALID

static final int TRANSFORM_REMOTETAXONNAMENATURALID
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 RemoteTaxonNameNaturalId.

See Also:
Constant Field Values

TRANSFORM_CLUSTERTAXONNAME

static final int TRANSFORM_CLUSTERTAXONNAME
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 ClusterTaxonName.

See Also:
Constant Field Values
Method Detail

toRemoteTaxonNameFullVO

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


toRemoteTaxonNameFullVO

RemoteTaxonNameFullVO toRemoteTaxonNameFullVO(TaxonName entity)
Converts this DAO's entity to an object of type RemoteTaxonNameFullVO.


toRemoteTaxonNameFullVOCollection

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


toRemoteTaxonNameFullVOArray

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


remoteTaxonNameFullVOToEntity

void remoteTaxonNameFullVOToEntity(RemoteTaxonNameFullVO source,
                                   TaxonName target,
                                   boolean copyIfNull)
Copies the fields of RemoteTaxonNameFullVO 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.

remoteTaxonNameFullVOToEntity

TaxonName remoteTaxonNameFullVOToEntity(RemoteTaxonNameFullVO remoteTaxonNameFullVO)
Converts an instance of type RemoteTaxonNameFullVO to this DAO's entity.


remoteTaxonNameFullVOToEntityCollection

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


toRemoteTaxonNameNaturalId

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


toRemoteTaxonNameNaturalId

RemoteTaxonNameNaturalId toRemoteTaxonNameNaturalId(TaxonName entity)
Converts this DAO's entity to an object of type RemoteTaxonNameNaturalId.


toRemoteTaxonNameNaturalIdCollection

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


toRemoteTaxonNameNaturalIdArray

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


remoteTaxonNameNaturalIdToEntity

void remoteTaxonNameNaturalIdToEntity(RemoteTaxonNameNaturalId source,
                                      TaxonName target,
                                      boolean copyIfNull)
Copies the fields of RemoteTaxonNameNaturalId 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.

remoteTaxonNameNaturalIdToEntity

TaxonName remoteTaxonNameNaturalIdToEntity(RemoteTaxonNameNaturalId remoteTaxonNameNaturalId)
Converts an instance of type RemoteTaxonNameNaturalId to this DAO's entity.


remoteTaxonNameNaturalIdToEntityCollection

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


toClusterTaxonName

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


toClusterTaxonName

ClusterTaxonName toClusterTaxonName(TaxonName entity)
Converts this DAO's entity to an object of type ClusterTaxonName.


toClusterTaxonNameCollection

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


toClusterTaxonNameArray

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


clusterTaxonNameToEntity

void clusterTaxonNameToEntity(ClusterTaxonName source,
                              TaxonName target,
                              boolean copyIfNull)
Copies the fields of ClusterTaxonName 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.

clusterTaxonNameToEntity

TaxonName clusterTaxonNameToEntity(ClusterTaxonName clusterTaxonName)
Converts an instance of type ClusterTaxonName to this DAO's entity.


clusterTaxonNameToEntityCollection

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


load

TaxonName load(java.lang.Integer id)
Loads an instance of fr.ifremer.allegro.referential.taxon.TaxonName from the persistent store.


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.

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 TaxonName.

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.

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.

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.

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

TaxonName create(TaxonName taxonName)
Creates an instance of fr.ifremer.allegro.referential.taxon.TaxonName and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        TaxonName taxonName)

Does the same thing as create(fr.ifremer.allegro.referential.taxon.TaxonName) 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.referential.taxon.TaxonName and adds from the passed in entities collection

Parameters:
entities - the collection of fr.ifremer.allegro.referential.taxon.TaxonName 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.referential.taxon.TaxonName) 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

TaxonName create(java.lang.String name,
                 java.lang.String completeName,
                 java.lang.Boolean isNaming,
                 java.lang.Boolean isReferent,
                 java.lang.Integer upperRank,
                 java.lang.Boolean isVirtual,
                 java.lang.Boolean isObsolete,
                 java.lang.Boolean isTemporary,
                 java.util.Date startDate,
                 java.util.Date endDate,
                 java.lang.String comments,
                 java.util.Date creationDate,
                 java.sql.Timestamp updateDate,
                 ReferenceTaxon referenceTaxon,
                 java.util.Collection childTaxonNames,
                 TaxonName parentTaxonName,
                 TaxonomicLevel taxonomicLevel,
                 java.util.Collection taxonNamehistory,
                 java.util.Collection parentTaxonNameHistory,
                 Citation citation)

Creates a new fr.ifremer.allegro.referential.taxon.TaxonName instance from all attributes and properties and adds it to the persistent store.


create

java.lang.Object create(int transform,
                        java.lang.String name,
                        java.lang.String completeName,
                        java.lang.Boolean isNaming,
                        java.lang.Boolean isReferent,
                        java.lang.Integer upperRank,
                        java.lang.Boolean isVirtual,
                        java.lang.Boolean isObsolete,
                        java.lang.Boolean isTemporary,
                        java.util.Date startDate,
                        java.util.Date endDate,
                        java.lang.String comments,
                        java.util.Date creationDate,
                        java.sql.Timestamp updateDate,
                        ReferenceTaxon referenceTaxon,
                        java.util.Collection childTaxonNames,
                        TaxonName parentTaxonName,
                        TaxonomicLevel taxonomicLevel,
                        java.util.Collection taxonNamehistory,
                        java.util.Collection parentTaxonNameHistory,
                        Citation citation)

Does the same thing as create(java.lang.String,java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.util.Date,java.util.Date,java.lang.String,java.util.Date,java.sql.Timestamp,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Collection,fr.ifremer.allegro.referential.taxon.TaxonName,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.util.Collection,java.util.Collection,fr.ifremer.allegro.referential.taxon.Citation) 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

TaxonName create(java.util.Date creationDate,
                 java.lang.Boolean isNaming,
                 java.lang.Boolean isObsolete,
                 java.lang.Boolean isReferent,
                 java.lang.Boolean isTemporary,
                 java.lang.Boolean isVirtual,
                 java.lang.String name,
                 ReferenceTaxon referenceTaxon,
                 java.util.Date startDate,
                 TaxonomicLevel taxonomicLevel,
                 java.lang.Integer upperRank)

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


create

java.lang.Object create(int transform,
                        java.util.Date creationDate,
                        java.lang.Boolean isNaming,
                        java.lang.Boolean isObsolete,
                        java.lang.Boolean isReferent,
                        java.lang.Boolean isTemporary,
                        java.lang.Boolean isVirtual,
                        java.lang.String name,
                        ReferenceTaxon referenceTaxon,
                        java.util.Date startDate,
                        TaxonomicLevel taxonomicLevel,
                        java.lang.Integer upperRank)

Does the same thing as create(java.util.Date,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String,fr.ifremer.allegro.referential.taxon.ReferenceTaxon,java.util.Date,fr.ifremer.allegro.referential.taxon.TaxonomicLevel,java.lang.Integer) 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(TaxonName taxonName)
Updates the taxonName instance in the persistent store.


update

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


remove

void remove(TaxonName taxonName)
Removes the instance of fr.ifremer.allegro.referential.taxon.TaxonName from the persistent store.


remove

void remove(java.lang.Integer id)
Removes the instance of fr.ifremer.allegro.referential.taxon.TaxonName having the given identifier from the persistent store.


remove

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


getAllTaxonName

java.util.Collection getAllTaxonName()

getAllTaxonName

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

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


getAllTaxonName

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

Does the same thing as getAllTaxonName() 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.


getAllTaxonName

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

Does the same thing as getAllTaxonName(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.


getAllTaxonName

java.util.Collection getAllTaxonName(int transform)

Does the same thing as getAllTaxonName() 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.


getAllTaxonName

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

Does the same thing as getAllTaxonName(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.


getAllTaxonName

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

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


getAllTaxonName

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

Does the same thing as getAllTaxonName(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.


findTaxonNameById

TaxonName findTaxonNameById(java.lang.Integer id)

findTaxonNameById

TaxonName findTaxonNameById(java.lang.String queryString,
                            java.lang.Integer id)

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


findTaxonNameById

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

Does the same thing as findTaxonNameById(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.


findTaxonNameById

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

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


findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(ReferenceTaxon referenceTaxon)

findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString,
                                                   ReferenceTaxon referenceTaxon)

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


findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(int pageNumber,
                                                   int pageSize,
                                                   ReferenceTaxon referenceTaxon)

Does the same thing as findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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.


findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(java.lang.String queryString,
                                                   int pageNumber,
                                                   int pageSize,
                                                   ReferenceTaxon referenceTaxon)

Does the same thing as findTaxonNameByReferenceTaxon(String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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.


findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                   ReferenceTaxon referenceTaxon)

Does the same thing as findTaxonNameByReferenceTaxon(fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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.


findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                   int pageNumber,
                                                   int pageSize,
                                                   ReferenceTaxon referenceTaxon)

Does the same thing as findTaxonNameByReferenceTaxon(int, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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.


findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                   java.lang.String queryString,
                                                   ReferenceTaxon referenceTaxon)

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


findTaxonNameByReferenceTaxon

java.util.Collection findTaxonNameByReferenceTaxon(int transform,
                                                   java.lang.String queryString,
                                                   int pageNumber,
                                                   int pageSize,
                                                   ReferenceTaxon referenceTaxon)

Does the same thing as findTaxonNameByReferenceTaxon(int, String, fr.ifremer.allegro.referential.taxon.ReferenceTaxon) 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.


findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(TaxonomicLevel taxonomicLevel)

findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString,
                                                   TaxonomicLevel taxonomicLevel)

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


findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(int pageNumber,
                                                   int pageSize,
                                                   TaxonomicLevel taxonomicLevel)

Does the same thing as findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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.


findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(java.lang.String queryString,
                                                   int pageNumber,
                                                   int pageSize,
                                                   TaxonomicLevel taxonomicLevel)

Does the same thing as findTaxonNameByTaxonomicLevel(String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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.


findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                   TaxonomicLevel taxonomicLevel)

Does the same thing as findTaxonNameByTaxonomicLevel(fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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.


findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                   int pageNumber,
                                                   int pageSize,
                                                   TaxonomicLevel taxonomicLevel)

Does the same thing as findTaxonNameByTaxonomicLevel(int, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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.


findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                   java.lang.String queryString,
                                                   TaxonomicLevel taxonomicLevel)

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


findTaxonNameByTaxonomicLevel

java.util.Collection findTaxonNameByTaxonomicLevel(int transform,
                                                   java.lang.String queryString,
                                                   int pageNumber,
                                                   int pageSize,
                                                   TaxonomicLevel taxonomicLevel)

Does the same thing as findTaxonNameByTaxonomicLevel(int, String, fr.ifremer.allegro.referential.taxon.TaxonomicLevel) 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.


findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(Citation citation)

findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(java.lang.String queryString,
                                             Citation citation)

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


findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(int pageNumber,
                                             int pageSize,
                                             Citation citation)

Does the same thing as findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) 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.


findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(java.lang.String queryString,
                                             int pageNumber,
                                             int pageSize,
                                             Citation citation)

Does the same thing as findTaxonNameByCitation(String, fr.ifremer.allegro.referential.taxon.Citation) 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.


findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(int transform,
                                             Citation citation)

Does the same thing as findTaxonNameByCitation(fr.ifremer.allegro.referential.taxon.Citation) 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.


findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(int transform,
                                             int pageNumber,
                                             int pageSize,
                                             Citation citation)

Does the same thing as findTaxonNameByCitation(int, fr.ifremer.allegro.referential.taxon.Citation) 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.


findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(int transform,
                                             java.lang.String queryString,
                                             Citation citation)

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


findTaxonNameByCitation

java.util.Collection findTaxonNameByCitation(int transform,
                                             java.lang.String queryString,
                                             int pageNumber,
                                             int pageSize,
                                             Citation citation)

Does the same thing as findTaxonNameByCitation(int, String, fr.ifremer.allegro.referential.taxon.Citation) 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.


findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(TaxonName parentTaxonName)

findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString,
                                                    TaxonName parentTaxonName)

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


findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(int pageNumber,
                                                    int pageSize,
                                                    TaxonName parentTaxonName)

Does the same thing as findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) 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.


findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(java.lang.String queryString,
                                                    int pageNumber,
                                                    int pageSize,
                                                    TaxonName parentTaxonName)

Does the same thing as findTaxonNameByParentTaxonName(String, fr.ifremer.allegro.referential.taxon.TaxonName) 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.


findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                    TaxonName parentTaxonName)

Does the same thing as findTaxonNameByParentTaxonName(fr.ifremer.allegro.referential.taxon.TaxonName) 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.


findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                    int pageNumber,
                                                    int pageSize,
                                                    TaxonName parentTaxonName)

Does the same thing as findTaxonNameByParentTaxonName(int, fr.ifremer.allegro.referential.taxon.TaxonName) 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.


findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                    java.lang.String queryString,
                                                    TaxonName parentTaxonName)

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


findTaxonNameByParentTaxonName

java.util.Collection findTaxonNameByParentTaxonName(int transform,
                                                    java.lang.String queryString,
                                                    int pageNumber,
                                                    int pageSize,
                                                    TaxonName parentTaxonName)

Does the same thing as findTaxonNameByParentTaxonName(int, String, fr.ifremer.allegro.referential.taxon.TaxonName) 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.


findTaxonNameByNaturalId

TaxonName findTaxonNameByNaturalId(java.lang.Integer id)

findTaxonNameByNaturalId

TaxonName findTaxonNameByNaturalId(java.lang.String queryString,
                                   java.lang.Integer id)

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


findTaxonNameByNaturalId

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

Does the same thing as findTaxonNameByNaturalId(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.


findTaxonNameByNaturalId

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

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


getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(java.sql.Timestamp updateDate)

getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString,
                                                     java.sql.Timestamp updateDate)

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


getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(int pageNumber,
                                                     int pageSize,
                                                     java.sql.Timestamp updateDate)

Does the same thing as getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) 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.


getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(java.lang.String queryString,
                                                     int pageNumber,
                                                     int pageSize,
                                                     java.sql.Timestamp updateDate)

Does the same thing as getAllTaxonNameSinceDateSynchro(String, java.sql.Timestamp) 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.


getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                     java.sql.Timestamp updateDate)

Does the same thing as getAllTaxonNameSinceDateSynchro(java.sql.Timestamp) 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.


getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                     int pageNumber,
                                                     int pageSize,
                                                     java.sql.Timestamp updateDate)

Does the same thing as getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) 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.


getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                     java.lang.String queryString,
                                                     java.sql.Timestamp updateDate)

Does the same thing as getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp) with an additional argument called queryString. This queryString argument allows you to override the query string defined in getAllTaxonNameSinceDateSynchro(int, java.sql.Timestamp updateDate).


getAllTaxonNameSinceDateSynchro

java.util.Collection getAllTaxonNameSinceDateSynchro(int transform,
                                                     java.lang.String queryString,
                                                     int pageNumber,
                                                     int pageSize,
                                                     java.sql.Timestamp updateDate)

Does the same thing as getAllTaxonNameSinceDateSynchro(int, String, java.sql.Timestamp) 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.


createFromClusterTaxonName

TaxonName createFromClusterTaxonName(ClusterTaxonName clusterTaxonName)

getAllClusterTaxonNameSinceDateSynchro

ClusterTaxonName[] getAllClusterTaxonNameSinceDateSynchro(java.sql.Timestamp synchronizationTimestamp,
                                                          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.

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.

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.

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.

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.