Enum Class StyleFlag

java.lang.Object
java.lang.Enum<StyleFlag>
com.myscript.iink.graphics.StyleFlag
All Implemented Interfaces:
Serializable, Comparable<StyleFlag>, Constable

public enum StyleFlag extends Enum<StyleFlag>
Style information flags.
  • Enum Constant Details

    • STROKE_COLOR

      public static final StyleFlag STROKE_COLOR
      Stroke color property.
    • STROKE_WIDTH

      public static final StyleFlag STROKE_WIDTH
      Stroke width property.
    • STROKE_LINE_CAP

      public static final StyleFlag STROKE_LINE_CAP
      Stroke line cap property.
    • STROKE_LINE_JOIN

      public static final StyleFlag STROKE_LINE_JOIN
      Stroke line join property.
    • STROKE_MITER_LIMIT

      public static final StyleFlag STROKE_MITER_LIMIT
      Stroke miter limit property.
    • STROKE_DASH_ARRAY

      public static final StyleFlag STROKE_DASH_ARRAY
      Stroke dash array property.
    • STROKE_DASH_OFFSET

      public static final StyleFlag STROKE_DASH_OFFSET
      Stroke dash offset property.
    • FILL_COLOR

      public static final StyleFlag FILL_COLOR
      Fill color property.
    • FILL_RULE

      public static final StyleFlag FILL_RULE
      Fill rule property.
    • FONT_FAMILY

      public static final StyleFlag FONT_FAMILY
      Font family property.
    • FONT_LINE_HEIGHT

      public static final StyleFlag FONT_LINE_HEIGHT
      Font line height property.
    • FONT_SIZE

      public static final StyleFlag FONT_SIZE
      Font size property.
    • FONT_STYLE

      public static final StyleFlag FONT_STYLE
      Font style property.
    • FONT_VARIANT

      public static final StyleFlag FONT_VARIANT
      Font variant property.
    • FONT_WEIGHT

      public static final StyleFlag FONT_WEIGHT
      Font weight property.
    • DROPSHADOW_XOFFSET

      public static final StyleFlag DROPSHADOW_XOFFSET
      Drop shadow horizontal property.
    • DROPSHADOW_YOFFSET

      public static final StyleFlag DROPSHADOW_YOFFSET
      Drop shadow vertical property.
    • DROPSHADOW_RADIUS

      public static final StyleFlag DROPSHADOW_RADIUS
      Drop shadow blur radius property.
    • DROPSHADOW_COLOR

      public static final StyleFlag DROPSHADOW_COLOR
      Drop shadow color property.
  • Method Details

    • values

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