com.esri.core.symbol
Enum SimpleFillSymbol.Style

java.lang.Object
  extended by java.lang.Enum<SimpleFillSymbol.Style>
      extended by com.esri.core.symbol.SimpleFillSymbol.Style
All Implemented Interfaces:
Serializable, Comparable<SimpleFillSymbol.Style>
Enclosing class:
SimpleFillSymbol

public static enum SimpleFillSymbol.Style
extends Enum<SimpleFillSymbol.Style>

The fill style. Values are

 NULL no fill
 SOLID paints entire area
 HORIZONTAL fills with horizontal lines
 VERTICAL fills with vertical lines
 FORWARD_DIAGONAL fills with forward diagonal lines
 BACKWARD_DIAGONAL fills with backward diagonal lines
 CROSS fills with horizontal and vertical lines
 DIAGONAL_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

NULL

public static final SimpleFillSymbol.Style NULL
No fill.


SOLID

public static final SimpleFillSymbol.Style SOLID
Paints entire area.


HORIZONTAL

public static final SimpleFillSymbol.Style HORIZONTAL
Fills with horizontal lines.


VERTICAL

public static final SimpleFillSymbol.Style VERTICAL
Fills with vertical lines.


FORWARD_DIAGONAL

public static final SimpleFillSymbol.Style FORWARD_DIAGONAL
Fills with forward diagonal lines.


BACKWARD_DIAGONAL

public static final SimpleFillSymbol.Style BACKWARD_DIAGONAL
Fills with backward diagonal lines


CROSS

public static final SimpleFillSymbol.Style CROSS
Fills with horizontal and vertical lines.


DIAGONAL_CROSS

public static final SimpleFillSymbol.Style DIAGONAL_CROSS
Fills with forward and backward diagonal lines.

Method Detail

values

public static SimpleFillSymbol.Style[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SimpleFillSymbol.Style c : SimpleFillSymbol.Style.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SimpleFillSymbol.Style valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()

fromString

public static SimpleFillSymbol.Style fromString(String v)

toString

public String toString()
Overrides:
toString in class Enum<SimpleFillSymbol.Style>


Copyright © 2012. All Rights Reserved.