Package com.luciad.view.gxy
Enum Class TLcdGXYHatchedFillStyle.Pattern
- All Implemented Interfaces:
Serializable
,Comparable<TLcdGXYHatchedFillStyle.Pattern>
,Constable
- Enclosing class:
TLcdGXYHatchedFillStyle
The fill pattern. Patterns can be combined, for example by specifying both horizontal and
vertical.
- Since:
- 10.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFill pattern that hatches slanted, from upper left to lower right.Fill pattern that fills the background with a given Paint (e.g. a color).Fill pattern that hatches horizontally.Fill pattern that hatches slanted, from lower left to upper right.Fill pattern that hatches vertically. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLcdGXYHatchedFillStyle.Pattern[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HORIZONTAL
Fill pattern that hatches horizontally. -
VERTICAL
Fill pattern that hatches vertically. -
SLASH
Fill pattern that hatches slanted, from lower left to upper right. -
BACK_SLASH
Fill pattern that hatches slanted, from upper left to lower right. -
BACKGROUND
Fill pattern that fills the background with a given Paint (e.g. a color).- See Also:
-
-
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
-