Enum Class HorizontalAlign

java.lang.Object
java.lang.Enum<HorizontalAlign>
codedraw.textformat.HorizontalAlign
All Implemented Interfaces:
Serializable, Comparable<HorizontalAlign>, Constable

public enum HorizontalAlign extends Enum<HorizontalAlign>
Horizontally aligns the text. Another description of this property would be text-alignment.
  • Enum Constant Details

    • LEFT

      public static final HorizontalAlign LEFT
      The origin point will be to the left of the text. The text will be drawn to the right of the (x, y) coordinate.
      
       -------------- + --------------
                      | Text goes here
       
    • CENTER

      public static final HorizontalAlign CENTER
      The text will be drawn at so that the x coordinate will be in the center of the text.
      
       -------------- + --------------
                Text goes here
       
  • Method Details

    • values

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