Enum Class VerticalAlignment

java.lang.Object
java.lang.Enum<VerticalAlignment>
com.independentsoft.office.odf.styles.VerticalAlignment
All Implemented Interfaces:
Serializable, Comparable<VerticalAlignment>, Constable

public enum VerticalAlignment extends Enum<VerticalAlignment>
Represents the vertical position of a character. By default characters are aligned according to their baseline.
  • Enum Constant Details

    • BOTTOM

      public static final VerticalAlignment BOTTOM
      To the bottom of the line.
    • TOP

      public static final VerticalAlignment TOP
      To the top of the line.
    • MIDDLE

      public static final VerticalAlignment MIDDLE
      To the center of the line.
    • AUTO

      public static final VerticalAlignment AUTO
      Automatically, which sets the vertical alignment to suit the text rotation. Text that is rotated 0 or 90 degrees is aligned to the baseline, while text that is rotated 270 degrees is aligned to the center of the line.
    • NONE

      public static final VerticalAlignment NONE
      None.
  • Method Details

    • values

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