Package com.myscript.iink.graphics
Enum Class StyleFlag
- All Implemented Interfaces:
Serializable
,Comparable<StyleFlag>
,Constable
Style information flags.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDrop shadow color property.Drop shadow blur radius property.Drop shadow horizontal property.Drop shadow vertical property.Fill color property.Fill rule property.Font family property.Font line height property.Font size property.Font style property.Font variant property.Font weight property.Stroke color property.Stroke dash array property.Stroke dash offset property.Stroke line cap property.Stroke line join property.Stroke miter limit property.Stroke width property. -
Method Summary
-
Enum Constant Details
-
STROKE_COLOR
Stroke color property. -
STROKE_WIDTH
Stroke width property. -
STROKE_LINE_CAP
Stroke line cap property. -
STROKE_LINE_JOIN
Stroke line join property. -
STROKE_MITER_LIMIT
Stroke miter limit property. -
STROKE_DASH_ARRAY
Stroke dash array property. -
STROKE_DASH_OFFSET
Stroke dash offset property. -
FILL_COLOR
Fill color property. -
FILL_RULE
Fill rule property. -
FONT_FAMILY
Font family property. -
FONT_LINE_HEIGHT
Font line height property. -
FONT_SIZE
Font size property. -
FONT_STYLE
Font style property. -
FONT_VARIANT
Font variant property. -
FONT_WEIGHT
Font weight property. -
DROPSHADOW_XOFFSET
Drop shadow horizontal property. -
DROPSHADOW_YOFFSET
Drop shadow vertical property. -
DROPSHADOW_RADIUS
Drop shadow blur radius property. -
DROPSHADOW_COLOR
Drop shadow color property.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-