Enum Class Paint.Align

java.lang.Object
java.lang.Enum<Paint.Align>
icyllis.modernui.graphics.Paint.Align
All Implemented Interfaces:
Serializable, Comparable<Paint.Align>, Constable
Enclosing class:
Paint

@Experimental public static enum Paint.Align extends Enum<Paint.Align>
The Align specifies the treatment where the stroke is placed in relation to the object edge, this only applies to closed contours. The default is CENTER.
  • Enum Constant Details

    • CENTER

      public static final Paint.Align CENTER
      The stroke is aligned to center.
    • INSIDE

      public static final Paint.Align INSIDE
      The stroke is aligned to inside.
    • OUTSIDE

      public static final Paint.Align OUTSIDE
      The stroke is aligned to outside.
  • Method Details

    • values

      public static Paint.Align[] 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 Paint.Align 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