Enum TextBibliographyTypeAttribute.Value
- java.lang.Object
-
- java.lang.Enum<TextBibliographyTypeAttribute.Value>
-
- org.odftoolkit.odfdom.dom.attribute.text.TextBibliographyTypeAttribute.Value
-
- All Implemented Interfaces:
Serializable
,Comparable<TextBibliographyTypeAttribute.Value>
- Enclosing class:
- TextBibliographyTypeAttribute
public static enum TextBibliographyTypeAttribute.Value extends Enum<TextBibliographyTypeAttribute.Value>
The value set of @text:bibliography-type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARTICLE
BOOK
BOOKLET
CONFERENCE
CUSTOM1
CUSTOM2
CUSTOM3
CUSTOM4
CUSTOM5
EMAIL
INBOOK
INCOLLECTION
INPROCEEDINGS
JOURNAL
MANUAL
MASTERSTHESIS
MISC
PHDTHESIS
PROCEEDINGS
TECHREPORT
UNPUBLISHED
WWW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TextBibliographyTypeAttribute.Value
enumValueOf(String value)
String
toString()
static TextBibliographyTypeAttribute.Value
valueOf(String name)
Returns the enum constant of this type with the specified name.static TextBibliographyTypeAttribute.Value[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARTICLE
public static final TextBibliographyTypeAttribute.Value ARTICLE
-
BOOK
public static final TextBibliographyTypeAttribute.Value BOOK
-
BOOKLET
public static final TextBibliographyTypeAttribute.Value BOOKLET
-
CONFERENCE
public static final TextBibliographyTypeAttribute.Value CONFERENCE
-
CUSTOM1
public static final TextBibliographyTypeAttribute.Value CUSTOM1
-
CUSTOM2
public static final TextBibliographyTypeAttribute.Value CUSTOM2
-
CUSTOM3
public static final TextBibliographyTypeAttribute.Value CUSTOM3
-
CUSTOM4
public static final TextBibliographyTypeAttribute.Value CUSTOM4
-
CUSTOM5
public static final TextBibliographyTypeAttribute.Value CUSTOM5
-
EMAIL
public static final TextBibliographyTypeAttribute.Value EMAIL
-
INBOOK
public static final TextBibliographyTypeAttribute.Value INBOOK
-
INCOLLECTION
public static final TextBibliographyTypeAttribute.Value INCOLLECTION
-
INPROCEEDINGS
public static final TextBibliographyTypeAttribute.Value INPROCEEDINGS
-
JOURNAL
public static final TextBibliographyTypeAttribute.Value JOURNAL
-
MANUAL
public static final TextBibliographyTypeAttribute.Value MANUAL
-
MASTERSTHESIS
public static final TextBibliographyTypeAttribute.Value MASTERSTHESIS
-
MISC
public static final TextBibliographyTypeAttribute.Value MISC
-
PHDTHESIS
public static final TextBibliographyTypeAttribute.Value PHDTHESIS
-
PROCEEDINGS
public static final TextBibliographyTypeAttribute.Value PROCEEDINGS
-
TECHREPORT
public static final TextBibliographyTypeAttribute.Value TECHREPORT
-
UNPUBLISHED
public static final TextBibliographyTypeAttribute.Value UNPUBLISHED
-
WWW
public static final TextBibliographyTypeAttribute.Value WWW
-
-
Method Detail
-
values
public static TextBibliographyTypeAttribute.Value[] 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 (TextBibliographyTypeAttribute.Value c : TextBibliographyTypeAttribute.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TextBibliographyTypeAttribute.Value 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:
toString
in classEnum<TextBibliographyTypeAttribute.Value>
-
enumValueOf
public static TextBibliographyTypeAttribute.Value enumValueOf(String value)
-
-