Enum Class HorizontalAlignment

java.lang.Object
java.lang.Enum<HorizontalAlignment>
com.luciad.drawing.HorizontalAlignment
All Implemented Interfaces:
Serializable, Comparable<HorizontalAlignment>, Constable

public enum HorizontalAlignment extends Enum<HorizontalAlignment>
Represents the horizontal alignment of, for example, icons or labels.
  • Enum Constant Details Link icon

    • Left Link icon

      public static final HorizontalAlignment Left
      Indicates that the item's left sides are aligned horizontally.
    • Center Link icon

      public static final HorizontalAlignment Center
      Indicates that the item's centers are aligned horizontally.
  • Method Details Link icon

    • values Link icon

      public static HorizontalAlignment[] 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 Link icon

      public static HorizontalAlignment 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