public enum CSLType extends Enum<CSLType>
| Modifier and Type | Method and Description |
|---|---|
static CSLType |
fromString(String str)
Converts the given string to a CSLType
|
String |
toString() |
static CSLType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSLType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSLType ARTICLE
public static final CSLType ARTICLE_JOURNAL
public static final CSLType ARTICLE_MAGAZINE
public static final CSLType ARTICLE_NEWSPAPER
public static final CSLType BILL
public static final CSLType BOOK
public static final CSLType BROADCAST
public static final CSLType CHAPTER
public static final CSLType DATASET
public static final CSLType ENTRY
public static final CSLType ENTRY_DICTIONARY
public static final CSLType ENTRY_ENCYCLOPEDIA
public static final CSLType FIGURE
public static final CSLType GRAPHIC
public static final CSLType INTERVIEW
public static final CSLType LEGAL_CASE
public static final CSLType LEGISLATION
public static final CSLType MANUSCRIPT
public static final CSLType MAP
public static final CSLType MOTION_PICTURE
public static final CSLType MUSICAL_SCORE
public static final CSLType PAMPHLET
public static final CSLType PAPER_CONFERENCE
public static final CSLType PATENT
public static final CSLType PERSONAL_COMMUNICATION
public static final CSLType POST
public static final CSLType POST_WEBLOG
public static final CSLType REPORT
public static final CSLType REVIEW
public static final CSLType REVIEW_BOOK
public static final CSLType SONG
public static final CSLType SPEECH
public static final CSLType THESIS
public static final CSLType TREATY
public static final CSLType WEBPAGE
public static CSLType[] values()
for (CSLType c : CSLType.values()) System.out.println(c);
public static CSLType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null