Package com.scroogexhtml.rtf
Enum Destination
- All Implemented Interfaces:
Serializable
,Comparable<Destination>
This enum defines available RTF document destinations.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBookmark start.Document body.Color table.Field.Field expression.Field result.Font table.Footer.Footnote.Header.Unknown.List.List level.List override.List table.\pn Turns on paragraph numbering.Picture. -
Method Summary
Modifier and TypeMethodDescriptionstatic Destination
Returns the enum constant of this type with the specified name.static Destination[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
DG_IGNORE
Unknown. -
DG_BODY
Document body. -
DG_FONTTABLE
Font table. -
DG_LISTTABLE
List table. -
DG_LIST
List. -
DG_LISTOVERRIDE
List override. -
DG_LISTLEVEL
List level. -
DG_COLORTABLE
Color table. -
DG_PARAGRAPH_NUMBERING
\pn Turns on paragraph numbering. This is a destination control word. -
DG_PICTURE
Picture. -
DG_FLDINST
Field expression. -
DG_FLDRSLT
Field result. -
DG_BKMKSTRT
Bookmark start. -
DG_FIELD
Field. -
DG_FOOTNOTE
Footnote. -
DG_HEADER
Header. -
DG_FOOTER
Footer.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-