public static enum TechnicalInformation.Type extends java.lang.Enum<TechnicalInformation.Type>
Enum Constant and Description |
---|
ARTICLE
An article from a journal or magazine.
|
BOOK
A book with an explicit publisher.
|
BOOKLET
A work that is printed and bound, but without a named publisher or sponsoring institution.
|
CONFERENCE
The same as inproceedings.
|
INBOOK
A part of a book, which may be a chapter (or section or whatever) and/or a range of pages.
|
INCOLLECTION
A part of a book having its own title.
|
INPROCEEDINGS
An article in a conference proceedings.
|
MANUAL
Technical documentation.
|
MASTERSTHESIS
A Master's thesis.
|
MISC
Use this type when nothing else fits.
|
PHDTHESIS
A PhD thesis.
|
PROCEEDINGS
The proceedings of a conference.
|
TECHREPORT
A report published by a school or other institution, usually numbered within a series.
|
UNPUBLISHED
A document having an author and title, but not formally published.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getComment()
returns the comment string
|
java.lang.String |
getDisplay()
returns the display string
|
java.lang.String |
toString()
returns the display string of the Type
|
static TechnicalInformation.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TechnicalInformation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TechnicalInformation.Type ARTICLE
public static final TechnicalInformation.Type BOOK
public static final TechnicalInformation.Type BOOKLET
public static final TechnicalInformation.Type CONFERENCE
public static final TechnicalInformation.Type INBOOK
public static final TechnicalInformation.Type INCOLLECTION
public static final TechnicalInformation.Type INPROCEEDINGS
public static final TechnicalInformation.Type MANUAL
public static final TechnicalInformation.Type MASTERSTHESIS
public static final TechnicalInformation.Type MISC
public static final TechnicalInformation.Type PHDTHESIS
public static final TechnicalInformation.Type PROCEEDINGS
public static final TechnicalInformation.Type TECHREPORT
public static final TechnicalInformation.Type UNPUBLISHED
public static TechnicalInformation.Type[] values()
for (TechnicalInformation.Type c : TechnicalInformation.Type.values()) System.out.println(c);
public static TechnicalInformation.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDisplay()
public java.lang.String getComment()
public java.lang.String toString()
toString
in class java.lang.Enum<TechnicalInformation.Type>