Enum Class HorizontalRelation
- All Implemented Interfaces:
Serializable,Comparable<HorizontalRelation>,Constable
Represents the against which the horizontal position of a frame is positioned.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionHorizontal position of a frame is positioned relative to a character.Horizontal position of a frame is positioned relative to another frame.Horizontal position of a frame is positioned relative to frame content.Horizontal position of a frame is positioned relative to a frame end margin.Horizontal position of a frame is positioned relative to a frame start margin.None.Horizontal position of a frame is positioned relative to a page.Horizontal position of a frame is positioned relative to page-content.Horizontal position of a frame is positioned relative to a page end margin.Horizontal position of a frame is positioned relative to a page start margin.Horizontal position of a frame is positioned relative to a paragraph.Horizontal position of a frame is positioned relative to paragraph content.Horizontal position of a frame is positioned relative to a paragraph end margin.Horizontal position of a frame is positioned relative to a paragraph start margin. -
Method Summary
Modifier and TypeMethodDescriptionstatic HorizontalRelationReturns the enum constant of this class with the specified name.static HorizontalRelation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PAGE
Horizontal position of a frame is positioned relative to a page. -
PAGE_CONTENT
Horizontal position of a frame is positioned relative to page-content. -
PAGE_START_MARGIN
Horizontal position of a frame is positioned relative to a page start margin. -
PAGE_END_MARGIN
Horizontal position of a frame is positioned relative to a page end margin. -
FRAME
Horizontal position of a frame is positioned relative to another frame. -
FRAME_CONTENT
Horizontal position of a frame is positioned relative to frame content. -
FRAME_START_MARGIN
Horizontal position of a frame is positioned relative to a frame start margin. -
FRAME_END_MARGIN
Horizontal position of a frame is positioned relative to a frame end margin. -
PARAGRAPH
Horizontal position of a frame is positioned relative to a paragraph. -
PARAGRAPH_CONTENT
Horizontal position of a frame is positioned relative to paragraph content. -
PARAGRAPH_START_MARGIN
Horizontal position of a frame is positioned relative to a paragraph start margin. -
PARAGRAPH_END_MARGIN
Horizontal position of a frame is positioned relative to a paragraph end margin. -
CHAR
Horizontal position of a frame is positioned relative to a character. -
NONE
None.
-
-
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
-