Interface Citation
- All Known Implementing Classes:
SimpleCitation
public interface Citation
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Method Summary
Modifier and TypeMethodDescriptionReturns the author(s) of the work.getDOI()Returns the DOI (Digital Object Identifier) if available.getKey()Returns a unique key for this citation (e.g., "CODATA2018").getTitle()Returns the title of the referenced work.getYear()Returns the year of publication.toBibTeX()Returns a BibTeX representation of this citation.
-
Method Details
-
getKey
String getKey()Returns a unique key for this citation (e.g., "CODATA2018"). -
getTitle
String getTitle()Returns the title of the referenced work. -
getAuthor
String getAuthor()Returns the author(s) of the work. -
getYear
String getYear()Returns the year of publication. -
getDOI
String getDOI()Returns the DOI (Digital Object Identifier) if available. -
toBibTeX
String toBibTeX()Returns a BibTeX representation of this citation.
-