public interface RunSummaryDao
Modifier and Type | Method and Description |
---|---|
void |
deleteRunSummary(int run)
Delete a run summary by run number.
|
List<Integer> |
getRuns()
Get the list of run numbers.
|
RunSummary |
getRunSummary(int run)
Get a run summary by run number without loading object state.
|
void |
insertRunSummary(RunSummary runSummary)
Insert a run summary.
|
boolean |
runSummaryExists(int run)
Return
true if a run summary exists in the database. |
void |
updateRunSummary(RunSummary runSummary)
Update a run summary that already exists.
|
void deleteRunSummary(int run)
run
- the run numberRunSummary getRunSummary(int run)
run
- the run numbervoid insertRunSummary(RunSummary runSummary)
runSummary
- the run summary objectboolean runSummaryExists(int run)
true
if a run summary exists in the database.run
- the run numbertrue
if run
exists in the databasevoid updateRunSummary(RunSummary runSummary)
runSummary
- the run summary to updateCopyright © 2019. All rights reserved.