Package com.github.cukedoctor.util
Enum Constants.Attributes.Name
- java.lang.Object
-
- java.lang.Enum<Constants.Attributes.Name>
-
- com.github.cukedoctor.util.Constants.Attributes.Name
-
- All Implemented Interfaces:
Serializable,Comparable<Constants.Attributes.Name>
- Enclosing class:
- Constants.Attributes
public static enum Constants.Attributes.Name extends Enum<Constants.Attributes.Name>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOWURIREADBACKENDCHAPTERLABELDATAURIDOCINFODOCTITLEDOCTYPEHARDBREAKSICONSLINKCSSNUMBEREDPDFSTYLEREVNUMBERSECTANCHORSSECTLINKSOURCEHIGHLIGHTERSTEMTOCTOCLEVELSVERSIONLABEL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()static Constants.Attributes.NamevalueOf(String name)Returns the enum constant of this type with the specified name.static Constants.Attributes.Name[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOC
public static final Constants.Attributes.Name TOC
-
TOCLEVELS
public static final Constants.Attributes.Name TOCLEVELS
-
ICONS
public static final Constants.Attributes.Name ICONS
-
NUMBERED
public static final Constants.Attributes.Name NUMBERED
-
HARDBREAKS
public static final Constants.Attributes.Name HARDBREAKS
-
LINKCSS
public static final Constants.Attributes.Name LINKCSS
-
SECTANCHORS
public static final Constants.Attributes.Name SECTANCHORS
-
SECTLINK
public static final Constants.Attributes.Name SECTLINK
-
BACKEND
public static final Constants.Attributes.Name BACKEND
-
REVNUMBER
public static final Constants.Attributes.Name REVNUMBER
-
DOCTITLE
public static final Constants.Attributes.Name DOCTITLE
-
DOCTYPE
public static final Constants.Attributes.Name DOCTYPE
-
DOCINFO
public static final Constants.Attributes.Name DOCINFO
-
SOURCEHIGHLIGHTER
public static final Constants.Attributes.Name SOURCEHIGHLIGHTER
-
PDFSTYLE
public static final Constants.Attributes.Name PDFSTYLE
-
VERSIONLABEL
public static final Constants.Attributes.Name VERSIONLABEL
-
CHAPTERLABEL
public static final Constants.Attributes.Name CHAPTERLABEL
-
STEM
public static final Constants.Attributes.Name STEM
-
ALLOWURIREAD
public static final Constants.Attributes.Name ALLOWURIREAD
-
DATAURI
public static final Constants.Attributes.Name DATAURI
-
-
Method Detail
-
values
public static Constants.Attributes.Name[] 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 (Constants.Attributes.Name c : Constants.Attributes.Name.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Constants.Attributes.Name 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
-
getName
public String getName()
-
-