de.glossmaker.bib.datastructure
Enum EBibTeXReference
java.lang.Object
java.lang.Enum<EBibTeXReference>
de.glossmaker.bib.datastructure.EBibTeXReference
- All Implemented Interfaces:
- Serializable, Comparable<EBibTeXReference>
public enum EBibTeXReference
- extends Enum<EBibTeXReference>
- Author:
- Markus Flingelli
ARTICLE
public static final EBibTeXReference ARTICLE
BOOK
public static final EBibTeXReference BOOK
BOOKLET
public static final EBibTeXReference BOOKLET
CONFERENCE
public static final EBibTeXReference CONFERENCE
INBOOK
public static final EBibTeXReference INBOOK
INCOLLECTION
public static final EBibTeXReference INCOLLECTION
INPROCEEDINGS
public static final EBibTeXReference INPROCEEDINGS
MANUAL
public static final EBibTeXReference MANUAL
MASTERSTHESIS
public static final EBibTeXReference MASTERSTHESIS
MISC
public static final EBibTeXReference MISC
PHDTHESIS
public static final EBibTeXReference PHDTHESIS
PROCEEDINGS
public static final EBibTeXReference PROCEEDINGS
TECHREPORT
public static final EBibTeXReference TECHREPORT
UNPUBLISHED
public static final EBibTeXReference UNPUBLISHED
values
public static EBibTeXReference[] 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 (EBibTeXReference c : EBibTeXReference.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EBibTeXReference 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 name
NullPointerException
- if the argument is null
Copyright © 2010 - 2011 Markus Flingelli. All Rights Reserved.