Package | Description |
---|---|
fr.ifremer.coser.bean |
Storage structure classes.
|
fr.ifremer.coser.result.repository.echobase |
Implementation for EchoBase result repository.
|
fr.ifremer.coser.result.repository.echobase.command |
Implementations of
CoserCommand for echobase result repository. |
fr.ifremer.coser.result.repository.legacy |
Implementation for legacy result repository.
|
fr.ifremer.coser.result.repository.legacy.command |
Implementations of
CoserCommand for legacy result repository. |
fr.ifremer.coser.services |
Services classes.
|
fr.ifremer.coser.storage |
CSV storage classes.
|
Modifier and Type | Field and Description |
---|---|
protected DataStorage |
AbstractDataContainer.dataCatch |
protected DataStorage |
AbstractDataContainer.dataHaul |
protected DataStorage |
AbstractDataContainer.dataLength |
protected DataStorage |
AbstractDataContainer.dataStrata |
protected DataStorage |
AbstractDataContainer.deletedDataCatch
Deleted catch (can be null).
|
protected DataStorage |
AbstractDataContainer.deletedDataHaul
Deleted haul (can be null).
|
protected DataStorage |
AbstractDataContainer.deletedDataLength
Deleted length (can be null).
|
protected DataStorage |
AbstractDataContainer.deletedDataStrata
Deleted strata (can be null).
|
protected DataStorage |
Project.refTaxSpecies
Reftax SIH.
|
protected DataStorage |
SpeciesListMap.storage
Species' list storage.
|
protected DataStorage |
SpeciesMap.storage
Species' storage.
|
protected DataStorage |
ZoneMap.storage |
protected DataStorage |
Project.typeEspeces
Type especes
|
Modifier and Type | Method and Description |
---|---|
DataStorage |
AbstractDataContainer.getCatch() |
DataStorage |
AbstractDataContainer.getDeletedCatch() |
DataStorage |
AbstractDataContainer.getDeletedHaul() |
DataStorage |
AbstractDataContainer.getDeletedLength() |
DataStorage |
AbstractDataContainer.getDeletedStrata() |
DataStorage |
AbstractDataContainer.getHaul() |
DataStorage |
AbstractDataContainer.getLength() |
DataStorage |
Project.getRefTaxSpecies() |
DataStorage |
SpeciesMap.getStorage() |
DataStorage |
ZoneMap.getStorage() |
DataStorage |
AbstractDataContainer.getStrata() |
DataStorage |
Project.getTypeEspeces() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractDataContainer.setCatch(DataStorage dataCatch) |
void |
AbstractDataContainer.setDeletedCatch(DataStorage deletedDataCatch) |
void |
AbstractDataContainer.setDeletedHaul(DataStorage deletedDataHaul) |
void |
AbstractDataContainer.setDeletedLength(DataStorage deletedDataLength) |
void |
AbstractDataContainer.setDeletedStrata(DataStorage deletedDataStrata) |
void |
AbstractDataContainer.setHaul(DataStorage dataHaul) |
void |
AbstractDataContainer.setLength(DataStorage dataLength) |
void |
Project.setRefTaxSpecies(DataStorage refTaxSpecies) |
void |
AbstractDataContainer.setStrata(DataStorage dataStrata) |
void |
Project.setTypeEspeces(DataStorage typeEspeces) |
Modifier and Type | Method and Description |
---|---|
DataStorage |
EchoBaseResultRepository.getCommunityIndicatorStorage() |
DataStorage |
EchoBaseResultRepository.getPopulationIndicatorStorage() |
Modifier and Type | Method and Description |
---|---|
protected DataStorage |
AbstractEchoBaseCommand.extractCommunity(com.google.common.base.Predicate<String[]> predicate) |
protected DataStorage |
AbstractEchoBaseCommand.extractPopulation(com.google.common.base.Predicate<String[]> predicate) |
Modifier and Type | Method and Description |
---|---|
DataStorage |
LegacyResultRepository.getCommunityIndicatorStorage() |
DataStorage |
LegacyResultRepository.getPopulationIndicatorStorage() |
Modifier and Type | Method and Description |
---|---|
protected DataStorage |
AbstractLegacyCommand.extractCommunity(com.google.common.base.Predicate<String[]> predicate) |
protected DataStorage |
AbstractLegacyCommand.extractPopulation(com.google.common.base.Predicate<String[]> predicate) |
Modifier and Type | Field and Description |
---|---|
protected DataStorage |
WebService.zonesMap
Deprecated.
Zones map (etat du service).
|
Modifier and Type | Method and Description |
---|---|
DataStorage |
CommonService.getEmptyStorage(Project project,
CoserConstants.Category category)
Get empty storage for category (filled with just header)
|
protected DataStorage |
ProjectService.getProjectContent(Project project,
AbstractDataContainer container,
CoserConstants.Category category,
boolean deletedContent)
Set content into project depending on category type.
|
DataStorage |
WebService.getZonesMap()
Deprecated.
Charge les zones disponibles depuis le fichier des zones.
|
DataStorage |
CommonService.loadCSVFile(File file)
Charge un fichier csv (estcomind/estpopind ...) mais sans verification.
|
DataStorage |
CommonService.loadCSVFile(File file,
char separator)
Charge un fichier csv (estcomind/estpopind ...) mais sans verification.
|
DataStorage |
CommonService.loadCSVFile(Project project,
CoserConstants.Category category,
File file)
Load file as csv.
|
DataStorage |
CommonService.loadCSVFile(Project project,
CoserConstants.Category category,
File file,
ProgressMonitor progress)
Load file as csv.
|
DataStorage |
CommonService.loadCSVFile(Project project,
CoserConstants.Category category,
File file,
ProgressMonitor progress,
boolean originalLoading)
Load file as csv.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ProjectService.addProjectContent(Project project,
AbstractDataContainer container,
CoserConstants.Category category,
DataStorage content,
boolean deletedContent)
Set content into project depending on category type.
|
void |
CommonService.storeData(DataStorage content,
File file)
Store project category data in specified file as csv.
|
void |
CommonService.storeDataWhithoutQuote(DataStorage content,
File file,
Map<String,String> refTaxSpecies,
CoserConstants.Category category)
Deprecated.
since 1.4, prefer use of
#storeDataWhithoutQuote(DataStorage, Writer, Map, Category) |
void |
CommonService.storeDataWhithoutQuote(DataStorage content,
Writer writer,
Map<String,String> refTaxSpecies,
CoserConstants.Category category)
Store data without quoting every columns with "" (r specific demand).
|
Modifier and Type | Class and Description |
---|---|
class |
MemoryDataStorage
Stockage mémoire des String[] sous forme de String simple.
|
Modifier and Type | Method and Description |
---|---|
static DataStorage |
DataStorages.load(File file)
Load a csv file using the default csv char separator
(
CoserConstants.CSV_SEPARATOR_CHAR ). |
static DataStorage |
DataStorages.load(File file,
char separator)
Load a csv file using the given csv char separator.
|
static <P extends com.google.common.base.Predicate<String[]>> |
DataStorages.sub(DataStorage storage,
P predicate,
String... header)
Gets a sub storage of all matching rows for the given predicate on the given storage.
|
Modifier and Type | Method and Description |
---|---|
static <P extends com.google.common.base.Predicate<String[]>> |
DataStorages.match(DataStorage storage,
P predicate,
boolean skipHeader)
//TODO Use a walker
|
static File |
DataStorages.save(DataStorage dataStorage,
String prefix,
String suffix)
Save a datastorage to a file and return its.
|
static void |
DataStorages.save(DataStorage dataStorage,
Writer writer)
Save a datastorage to a writer.
|
static <P extends com.google.common.base.Predicate<String[]>> |
DataStorages.sub(DataStorage storage,
P predicate,
String... header)
Gets a sub storage of all matching rows for the given predicate on the given storage.
|
static String |
DataStorages.toString(DataStorage storage) |
static <P extends com.google.common.base.Predicate<String[]>,W extends DataStorageWalker> |
DataStorages.walk(DataStorage storage,
P predicate,
W walker) |
static <W extends DataStorageWalker> |
DataStorages.walk(DataStorage storage,
W walker) |
Copyright © 2010–2015 Ifremer. All rights reserved.