com.stimulsoft.base.context.chart.geoms.enums
Enum StiPenLineCap

java.lang.Object
  extended by java.lang.Enum<StiPenLineCap>
      extended by com.stimulsoft.base.context.chart.geoms.enums.StiPenLineCap
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiPenLineCap>

public enum StiPenLineCap
extends java.lang.Enum<StiPenLineCap>


Enum Constant Summary
ArrowAnchor
           
DiamondAnchor
           
Flat
           
NoAnchor
           
Round
           
RoundAnchor
           
Square
           
SquareAnchor
           
Triangle
           
 
Method Summary
static StiPenLineCap forValue(int value)
           
 int getAwtCap()
           
 int getValue()
           
static StiPenLineCap valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiPenLineCap[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Flat

public static final StiPenLineCap Flat

Square

public static final StiPenLineCap Square

Round

public static final StiPenLineCap Round

Triangle

public static final StiPenLineCap Triangle

NoAnchor

public static final StiPenLineCap NoAnchor

SquareAnchor

public static final StiPenLineCap SquareAnchor

RoundAnchor

public static final StiPenLineCap RoundAnchor

DiamondAnchor

public static final StiPenLineCap DiamondAnchor

ArrowAnchor

public static final StiPenLineCap ArrowAnchor
Method Detail

values

public static StiPenLineCap[] 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 (StiPenLineCap c : StiPenLineCap.values())
    System.out.println(c);

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

valueOf

public static StiPenLineCap valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()

forValue

public static StiPenLineCap forValue(int value)

getAwtCap

public int getAwtCap()