Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.symbology
Enum Class SimpleFillSymbol.Style
- All Implemented Interfaces:
Serializable
,Comparable<SimpleFillSymbol.Style>
,Constable
- Enclosing class:
SimpleFillSymbol
Defines the fill style for a SimpleFillSymbol. A style describe how to display the pattern that spans across the
area of a SimpleFillSymbol.
- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFills area with backwards diagonal lines.Fills area with horizontal/vertical lines.Fills area with backwards/forwards diagonal lines.Fills area with Forwards diagonal lines.Fills area with horizontal lines.No fill.Fills area with Solid color.Fills area with vertical lines. -
Method Summary
Modifier and TypeMethodDescriptionstatic SimpleFillSymbol.Style
Returns the enum constant of this class with the specified name.static SimpleFillSymbol.Style[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BACKWARD_DIAGONAL
Fills area with backwards diagonal lines. -
FORWARD_DIAGONAL
Fills area with Forwards diagonal lines. -
DIAGONAL_CROSS
Fills area with backwards/forwards diagonal lines. -
HORIZONTAL
Fills area with horizontal lines. -
VERTICAL
Fills area with vertical lines. -
CROSS
Fills area with horizontal/vertical lines. -
SOLID
Fills area with Solid color. -
NULL
No fill.
-
-
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
-