de.glossmaker.bib.datastructure
Enum EBibTeXReference

Package class diagram package EBibTeXReference
java.lang.Object
  extended by java.lang.Enum<EBibTeXReference>
      extended by de.glossmaker.bib.datastructure.EBibTeXReference
All Implemented Interfaces:
Serializable, Comparable<EBibTeXReference>

public enum EBibTeXReference
extends Enum<EBibTeXReference>

Author:
Markus Flingelli

Enum Constant Summary
ARTICLE
           
BOOK
           
BOOKLET
           
CONFERENCE
           
INBOOK
           
INCOLLECTION
           
INPROCEEDINGS
           
MANUAL
           
MASTERSTHESIS
           
MISC
           
PHDTHESIS
           
PROCEEDINGS
           
TECHREPORT
           
UNPUBLISHED
           
 
Method Summary
static EBibTeXReference valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EBibTeXReference[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.