|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<SimpleFillSymbol.Style> com.esri.core.symbol.SimpleFillSymbol.Style
public static enum SimpleFillSymbol.Style
The fill style. Values are
NULL
no fillSOLID
paints entire areaHORIZONTAL
fills with horizontal linesVERTICAL
fills with vertical linesFORWARD_DIAGONAL
fills with forward diagonal linesBACKWARD_DIAGONAL
fills with backward diagonal linesCROSS
fills with horizontal and vertical linesDIAGONAL_CROSS
fills with forward and backward diagonal lines
Enum Constant Summary | |
---|---|
BACKWARD_DIAGONAL
Fills with backward diagonal lines |
|
CROSS
Fills with horizontal and vertical lines. |
|
DIAGONAL_CROSS
Fills with forward and backward diagonal lines. |
|
FORWARD_DIAGONAL
Fills with forward diagonal lines. |
|
HORIZONTAL
Fills with horizontal lines. |
|
NULL
No fill. |
|
SOLID
Paints entire area. |
|
VERTICAL
Fills with vertical lines. |
Method Summary | |
---|---|
static SimpleFillSymbol.Style |
fromString(String v)
|
String |
getValue()
|
String |
toString()
|
static SimpleFillSymbol.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SimpleFillSymbol.Style[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SimpleFillSymbol.Style NULL
public static final SimpleFillSymbol.Style SOLID
public static final SimpleFillSymbol.Style HORIZONTAL
public static final SimpleFillSymbol.Style VERTICAL
public static final SimpleFillSymbol.Style FORWARD_DIAGONAL
public static final SimpleFillSymbol.Style BACKWARD_DIAGONAL
public static final SimpleFillSymbol.Style CROSS
public static final SimpleFillSymbol.Style DIAGONAL_CROSS
Method Detail |
---|
public static SimpleFillSymbol.Style[] values()
for (SimpleFillSymbol.Style c : SimpleFillSymbol.Style.values()) System.out.println(c);
public static SimpleFillSymbol.Style valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getValue()
public static SimpleFillSymbol.Style fromString(String v)
public String toString()
toString
in class Enum<SimpleFillSymbol.Style>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |