Package com.deltaxml.dita.config
Enum Class XmlVersionDeclaration
- All Implemented Interfaces:
com.deltaxml.dita.DitaCompareDisplayable,Serializable,Comparable<XmlVersionDeclaration>,Constable
public enum XmlVersionDeclaration
extends Enum<XmlVersionDeclaration>
implements com.deltaxml.dita.DitaCompareDisplayable
Represents the values for the version in the XML declaration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the user-friendly String description of the XmlVersionDeclaration.Returns the user-friendly String name of the XmlVersionDeclaration.toString()Returns a String representation of XmlVersionDeclaration.static XmlVersionDeclarationReturns the enum constant of this class with the specified name.static XmlVersionDeclaration[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
XML_1_0
Ensure the xml version is set to '1.0'. -
XML_1_1
Ensure the xml version is set to '1.1'. -
SYSTEM
Use the 'B' document's xml version (as provided by the parser).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getDisplayName
Returns the user-friendly String name of the XmlVersionDeclaration.
- Specified by:
getDisplayNamein interfacecom.deltaxml.dita.DitaCompareDisplayable- Returns:
- a user-friendly String representing the XmlVersionDeclaration object
-
getDisplayDescription
Returns the user-friendly String description of the XmlVersionDeclaration.
- Specified by:
getDisplayDescriptionin interfacecom.deltaxml.dita.DitaCompareDisplayable- Returns:
- a user-friendly String description representing the XmlVersionDeclaration object
-
toString
Returns a String representation of XmlVersionDeclaration.
- Overrides:
toStringin classEnum<XmlVersionDeclaration>- Returns:
- a String representing the XmlVersionDeclaration object
-