Enum Class ImageAlignment

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

public enum ImageAlignment extends Enum<ImageAlignment>
Represents which border (start, end) or axis (center) of an image and a text are to be aligned.
  • Enum Constant Details

    • START

      public static final ImageAlignment START
      Image and text are aligned on the start of the image.
    • CENTER

      public static final ImageAlignment CENTER
      Image and text are centered.
    • END

      public static final ImageAlignment END
      Image and text are aligned on the end of the image.
    • NONE

      public static final ImageAlignment NONE
      None.
  • Method Details

    • values

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