Enum Class VerticalRelation
- All Implemented Interfaces:
Serializable,Comparable<VerticalRelation>,Constable
Represents the area against which the vertical 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 ConstantDescriptionVertical position of frame positioned relative to a baseline.Vertical position of frame positioned relative to a character.Vertical position of frame positioned relative to a frame.Vertical position of frame positioned relative to frame content.Vertical position of frame positioned relative to a line.None.Vertical position of frame positioned relative to a page.Vertical position of frame positioned relative to page content.Vertical position of frame positioned relative to a paragraph.Vertical position of frame positioned relative to paragraph content.Vertical position of frame positioned relative to text. -
Method Summary
Modifier and TypeMethodDescriptionstatic VerticalRelationReturns the enum constant of this class with the specified name.static VerticalRelation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PAGE
Vertical position of frame positioned relative to a page. -
PAGE_CONTENT
Vertical position of frame positioned relative to page content. -
FRAME
Vertical position of frame positioned relative to a frame. -
FRAME_CONTENT
Vertical position of frame positioned relative to frame content. -
PARAGRAPH
Vertical position of frame positioned relative to a paragraph. -
PARAGRAPH_CONTENT
Vertical position of frame positioned relative to paragraph content. -
CHAR
Vertical position of frame positioned relative to a character. -
LINE
Vertical position of frame positioned relative to a line. -
BASE_LINE
Vertical position of frame positioned relative to a baseline. -
TEXT
Vertical position of frame positioned relative to text. -
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
-