Enum Class HorizontalPosition
- All Implemented Interfaces:
Serializable,Comparable<HorizontalPosition>,Constable
Represents the horizontal alignment of a frame in relation to a specific area for documents with a text.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionHorizontal alignment of a frame should be centered in relation to a specific area for documents within a text.Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an even page number within a text.Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an odd page number within a text.Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an even page number within a text.Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an odd page number within a text.NoneHorizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an even page number within a text.Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an odd page number within a text. -
Method Summary
Modifier and TypeMethodDescriptionstatic HorizontalPositionReturns the enum constant of this class with the specified name.static HorizontalPosition[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LEFT
Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an odd page number within a text. -
CENTER
Horizontal alignment of a frame should be centered in relation to a specific area for documents within a text. -
RIGHT
Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an odd page number within a text. -
FROM_LEFT
Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an odd page number within a text. -
INSIDE
Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an even page number within a text. -
OUTSIDE
Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an even page number within a text. -
FROM_INSIDE
Horizontal alignment of a frame should be centered in relation to a specific area for documents, on pages with an even page number within a 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
-