Package | Description |
---|---|
unidue.ub.statistics.media.journal |
Representation of journal information and their aggregation in collections.
|
Modifier and Type | Method and Description |
---|---|
JournalTitle |
JournalTitle.clone()
returns a new
JournalTitle object as clone of an existing one |
static JournalTitle |
JournalTitleDAO.getJournalTitle(javax.persistence.EntityManager em,
java.lang.String issn,
int year)
returns a specific journal title for an issn and a year
|
static JournalTitle |
JournalTitleDAO.getJournalTitle(java.lang.String issn,
int year)
returns a specific journal title for an issn and a year
|
JournalTitle |
JournalTitle.setAnchor(java.lang.String anchor)
sets the anchor of the journal collection this journal title is part of
|
JournalTitle |
JournalTitle.setCalculatedPrice(double priceCalculated)
sets the calculated price of this journal title
|
JournalTitle |
JournalTitle.setIssn(java.lang.String issn)
sets the ISSN of the journal title
|
JournalTitle |
JournalTitle.setName(java.lang.String name)
sets the name of the journal title
|
JournalTitle |
JournalTitle.setPrice(double price)
sets the price of this journal title
|
JournalTitle |
JournalTitle.setSnip(double snip)
sets the SNIP of this journal title
|
JournalTitle |
JournalTitle.setSubject(java.lang.String subject)
sets the subjects of this journal title
|
JournalTitle |
JournalTitle.setType(java.lang.String type)
sets the type of the journal title
|
JournalTitle |
JournalTitle.setYear(int year)
sets the year of this journal title
|
JournalTitle |
JournalTitle.setZDBID(java.lang.String zdbID)
sets the ZDB ID of this journal title
|
Modifier and Type | Method and Description |
---|---|
java.util.List<JournalTitle> |
JournalCollection.getAllJournals()
returns the individual
JournalTitle objects contained in the collection |
static java.util.List<JournalTitle> |
JournalTitleDAO.getJournals()
returns a list of all journal titles stored in the database
|
java.util.List<JournalTitle> |
JournalCollection.getJournals()
returns the individual
JournalTitle objects contained in the collection |
java.util.List<JournalTitle> |
JournalCollection.getJournalsForYear(javax.persistence.EntityManager em,
int year)
returns the individual
JournalTitle objects contained in the collection |
static java.util.List<JournalTitle> |
JournalTitleDAO.getJournalTitlesByIssn(javax.persistence.EntityManager em,
java.lang.String issn)
returns a list of journal titles for an issn
|
static java.util.List<JournalTitle> |
JournalTitleDAO.getJournalTitlesByIssn(java.lang.String issn)
returns a list of journal titles for an issn
|
static java.util.List<JournalTitle> |
JournalTitleDAO.getJournalTitlesByZDBID(javax.persistence.EntityManager em,
java.lang.String zdbID)
returns a list of journal titles for a ZDB ID
|
static java.util.List<JournalTitle> |
JournalTitleDAO.getJournalTitlesByZDBID(javax.persistence.EntityManager em,
java.lang.String zdbID,
int year)
returns a specific journal title for a ZDB ID and a year
|
java.util.List<JournalTitle> |
JournalCollection.getLatestJournals()
returns the individual
JournalTitle objects contained in the collection |
Modifier and Type | Method and Description |
---|---|
int |
JournalTitle.compareTo(JournalTitle other)
allows for a comparison of two collections with respect to their years.
|
static void |
JournalTitleDAO.persistJournal(javax.persistence.EntityManager em,
JournalTitle journalTitle)
persists a journal title to the database
|
static void |
JournalTitleDAO.persistJournal(JournalTitle journalTitle)
persists a journal title to the database
|
Modifier and Type | Method and Description |
---|---|
static void |
JournalTitleDAO.persistJournals(javax.persistence.EntityManager em,
java.util.List<JournalTitle> journalTitles)
persists a list of journal titles to the database
|
static void |
JournalTitleDAO.persistJournals(java.util.List<JournalTitle> journalTitles)
persists a list of journal titles to the database
|