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 Type
    Method
    Description
    Returns the author(s) of the work.
    Returns the DOI (Digital Object Identifier) if available.
    Returns a unique key for this citation (e.g., "CODATA2018").
    Returns the title of the referenced work.
    Returns the year of publication.
    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.