Package guideme.document.flow
Enum Class InlineBlockAlignment
- All Implemented Interfaces:
Serializable
,Comparable<InlineBlockAlignment>
,Constable
How an inline block element is supposed to be aligned within the flow layout.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFloat it to the left and wrap text around its right side.Float it to the right and wrap text around its left side.Place it in the line like any other line element. -
Method Summary
Modifier and TypeMethodDescriptionstatic InlineBlockAlignment
Returns the enum constant of this class with the specified name.static InlineBlockAlignment[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INLINE
Place it in the line like any other line element. This means text will not wrap around it to fill the height. -
FLOAT_LEFT
Float it to the left and wrap text around its right side. -
FLOAT_RIGHT
Float it to the right and wrap text around its left side.
-
-
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
-