Package de.undercouch.citeproc.endnote
Enum EndNoteType
- java.lang.Object
-
- java.lang.Enum<EndNoteType>
-
- de.undercouch.citeproc.endnote.EndNoteType
-
- All Implemented Interfaces:
Serializable,Comparable<EndNoteType>
public enum EndNoteType extends Enum<EndNoteType>
Valid EndNote reference types.- Author:
- Michel Kraemer
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EndNoteTypefromString(String str)Converts the given string to a EndNoteTypeStringtoString()static EndNoteTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EndNoteType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERIC
public static final EndNoteType GENERIC
-
ARTWORK
public static final EndNoteType ARTWORK
-
AUDIOVISUAL_MATERIAL
public static final EndNoteType AUDIOVISUAL_MATERIAL
-
BILL
public static final EndNoteType BILL
-
BOOK
public static final EndNoteType BOOK
-
BOOK_SECTION
public static final EndNoteType BOOK_SECTION
-
CASE
public static final EndNoteType CASE
-
CHART_OR_TABLE
public static final EndNoteType CHART_OR_TABLE
-
CLASSICAL_WORK
public static final EndNoteType CLASSICAL_WORK
-
COMPUTER_PROGRAM
public static final EndNoteType COMPUTER_PROGRAM
-
CONFERENCE_PAPER
public static final EndNoteType CONFERENCE_PAPER
-
CONFERENCE_PROCEEDINGS
public static final EndNoteType CONFERENCE_PROCEEDINGS
-
EDITED_BOOK
public static final EndNoteType EDITED_BOOK
-
EQUATION
public static final EndNoteType EQUATION
-
ELECTRONIC_ARTICLE
public static final EndNoteType ELECTRONIC_ARTICLE
-
ELECTRONIC_BOOK
public static final EndNoteType ELECTRONIC_BOOK
-
ELECTRONIC_SOURCE
public static final EndNoteType ELECTRONIC_SOURCE
-
FIGURE
public static final EndNoteType FIGURE
-
FILM_OR_BROADCAST
public static final EndNoteType FILM_OR_BROADCAST
-
GOVERNMENT_DOCUMENT
public static final EndNoteType GOVERNMENT_DOCUMENT
-
HEARING
public static final EndNoteType HEARING
-
JOURNAL_ARTICLE
public static final EndNoteType JOURNAL_ARTICLE
-
LEGAL_RULE_REGULATION
public static final EndNoteType LEGAL_RULE_REGULATION
-
MAGAZINE_ARTICLE
public static final EndNoteType MAGAZINE_ARTICLE
-
MANUSCRIPT
public static final EndNoteType MANUSCRIPT
-
MAP
public static final EndNoteType MAP
-
NEWSPAPER_ARTICLE
public static final EndNoteType NEWSPAPER_ARTICLE
-
ONLINE_DATABASE
public static final EndNoteType ONLINE_DATABASE
-
ONLINE_MULTIMEDIA
public static final EndNoteType ONLINE_MULTIMEDIA
-
PATENT
public static final EndNoteType PATENT
-
PERSONAL_COMMUNICATION
public static final EndNoteType PERSONAL_COMMUNICATION
-
REPORT
public static final EndNoteType REPORT
-
STATUTE
public static final EndNoteType STATUTE
-
THESIS
public static final EndNoteType THESIS
-
UNPUBLISHED_WORK
public static final EndNoteType UNPUBLISHED_WORK
-
UNUSED_1
public static final EndNoteType UNUSED_1
-
UNUSED_2
public static final EndNoteType UNUSED_2
-
UNUSED_3
public static final EndNoteType UNUSED_3
-
-
Method Detail
-
values
public static EndNoteType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EndNoteType c : EndNoteType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EndNoteType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<EndNoteType>
-
fromString
public static EndNoteType fromString(String str)
Converts the given string to a EndNoteType- Parameters:
str- the string- Returns:
- the converted EndNoteType
-
-