Enum Class InlineBlockAlignment

java.lang.Object
java.lang.Enum<InlineBlockAlignment>
guideme.document.flow.InlineBlockAlignment
All Implemented Interfaces:
Serializable, Comparable<InlineBlockAlignment>, Constable

public enum InlineBlockAlignment extends Enum<InlineBlockAlignment>
How an inline block element is supposed to be aligned within the flow layout.
  • Enum Constant Details

    • INLINE

      public static final InlineBlockAlignment 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

      public static final InlineBlockAlignment FLOAT_LEFT
      Float it to the left and wrap text around its right side.
    • FLOAT_RIGHT

      public static final InlineBlockAlignment FLOAT_RIGHT
      Float it to the right and wrap text around its left side.
  • Method Details

    • values

      public static InlineBlockAlignment[] 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

      public static InlineBlockAlignment valueOf(String name)
      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 name
      NullPointerException - if the argument is null