public enum OutputFormat extends java.lang.Enum<OutputFormat> implements DocBookCompareDisplayable
Enum Constant and Description |
---|
ARBORTEXT_TCS
Differences are marked up in the Arbortext tracked change format.
|
DOCBOOK_MARKUP
Differences are marked up using DocBook's revisonflag attribute.
|
FRAMEMAKER_TCS |
OXYGEN_TCS
Differences are marked up in the oXygen tracked change format.
|
XMETAL_TCS
Differences are marked up in the XMetaL tracked change format.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDisplayDescription()
Returns the user friendly String description of the OutputFormat.
|
java.lang.String |
getDisplayName()
Returns the user friendly String name of the OutputFormat.
|
static OutputFormat |
getOutputFormat(java.lang.String value)
Returns a OutputFormat object from the supplied String value if appropriate.
|
static OutputFormat |
parseValue(java.lang.String value)
Returns a OutputFormat object from the supplied String value if appropriate.
|
java.lang.String |
toString()
Returns a String representation of OutputFormat.
|
static OutputFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormat DOCBOOK_MARKUP
public static final OutputFormat ARBORTEXT_TCS
public static final OutputFormat OXYGEN_TCS
public static final OutputFormat XMETAL_TCS
public static final OutputFormat FRAMEMAKER_TCS
public static OutputFormat[] values()
for (OutputFormat c : OutputFormat.values()) System.out.println(c);
public static OutputFormat 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 getDisplayName()
Returns the user friendly String name of the OutputFormat.
getDisplayName
in interface DocBookCompareDisplayable
public java.lang.String getDisplayDescription()
Returns the user friendly String description of the OutputFormat.
getDisplayDescription
in interface DocBookCompareDisplayable
public java.lang.String toString()
Returns a String representation of OutputFormat.
toString
in class java.lang.Enum<OutputFormat>
public static OutputFormat getOutputFormat(java.lang.String value)
Returns a OutputFormat object from the supplied String value if appropriate.
This method should not be used under normal circumstances, enum instance values should be used instead.
value
- a String representation of a OutputFormat valuepublic static OutputFormat parseValue(java.lang.String value) throws java.lang.IllegalArgumentException
Returns a OutputFormat object from the supplied String value if appropriate.
This method should not be used under normal circumstances, enum instance values should be used instead.
value
- a String representation of a OutputFormat valuejava.lang.IllegalArgumentException
- Whenever the provided string does not represent one of this enum'e enumerated values.Copyright (c) 2010-2016 DeltaXML Ltd. All Rights Reserved.