Package de.undercouch.citeproc.output
Class Bibliography
- java.lang.Object
-
- de.undercouch.citeproc.output.Bibliography
-
public class Bibliography extends Object
A generated bibliography consisting of bibliography entries and some formatting parameters- Author:
- Michel Kraemer
-
-
Constructor Summary
Constructors Constructor Description Bibliography(String... entries)Bibliography(String[] entries, String bibStart, String bibEnd, String[] entryIds, Integer maxOffset, Integer entrySpacing, Integer lineSpacing, Boolean hangingIndent, Boolean done, SecondFieldAlign secondFieldAlign)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetBibEnd()StringgetBibStart()BooleangetDone()String[]getEntries()String[]getEntryIds()IntegergetEntrySpacing()BooleangetHangingIndent()IntegergetLineSpacing()IntegergetMaxOffset()SecondFieldAligngetSecondFieldAlign()inthashCode()StringmakeString()Converts this bibliography to a String that can be inserted into the text
-
-
-
Constructor Detail
-
Bibliography
public Bibliography(String... entries)
-
-
Method Detail
-
getEntries
public String[] getEntries()
- Returns:
- the bibliography's entries
-
getBibStart
public String getBibStart()
- Returns:
- the bibliography's bibstart
-
getBibEnd
public String getBibEnd()
- Returns:
- the bibliography's bibend
-
getEntryIds
public String[] getEntryIds()
- Returns:
- the bibliography's entry_ids
-
getMaxOffset
public Integer getMaxOffset()
- Returns:
- the bibliography's maxoffset
-
getEntrySpacing
public Integer getEntrySpacing()
- Returns:
- the bibliography's entryspacing
-
getLineSpacing
public Integer getLineSpacing()
- Returns:
- the bibliography's linespacing
-
getHangingIndent
public Boolean getHangingIndent()
- Returns:
- the bibliography's hangingindent
-
getDone
public Boolean getDone()
- Returns:
- the bibliography's done
-
getSecondFieldAlign
public SecondFieldAlign getSecondFieldAlign()
- Returns:
- the bibliography's second-field-align
-
makeString
public String makeString()
Converts this bibliography to a String that can be inserted into the text- Returns:
- the String representing the bibliography
-
-