com.stimulsoft.webdesigner.enums
Enum StiShapeId

java.lang.Object
  extended by java.lang.Enum<StiShapeId>
      extended by com.stimulsoft.webdesigner.enums.StiShapeId
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiShapeId>

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

Copyright Stimulsoft


Enum Constant Summary
StiArrowShapeType
           
StiBentArrowShapeType
           
StiChevronShapeType
           
StiComplexArrowShapeType
           
StiDiagonalDownLineShapeType
           
StiDiagonalUpLineShapeType
           
StiDivisionShapeType
           
StiEqualShapeType
           
StiFlowchartCardShapeType
           
StiFlowchartCollateShapeType
           
StiFlowchartDecisionShapeType
           
StiFlowchartManualInputShapeType
           
StiFlowchartOffPageConnectorShapeType
           
StiFlowchartPreparationShapeType
           
StiFlowchartSortShapeType
           
StiFrameShapeType
           
StiHorizontalLineShapeType
           
StiLeftAndRightLineShapeType
           
StiMinusShapeType
           
StiMultiplyShapeType
           
StiOvalShapeType
           
StiParallelogramShapeType
           
StiPlusShapeType
           
StiRectangleShapeType
           
StiRegularPentagonShapeType
           
StiRoundedRectangleShapeType
           
StiShapeTypeService
           
StiSnipDiagonalSideCornerRectangleShapeType
           
StiSnipSameSideCornerRectangleShapeType
           
StiTopAndBottomLineShapeType
           
StiTrapezoidShapeType
           
StiTriangleShapeType
           
StiVerticalLineShapeType
           
 
Method Summary
static StiShapeId valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiShapeId[] 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

StiShapeTypeService

public static final StiShapeId StiShapeTypeService

StiSnipDiagonalSideCornerRectangleShapeType

public static final StiShapeId StiSnipDiagonalSideCornerRectangleShapeType

StiSnipSameSideCornerRectangleShapeType

public static final StiShapeId StiSnipSameSideCornerRectangleShapeType

StiTrapezoidShapeType

public static final StiShapeId StiTrapezoidShapeType

StiRegularPentagonShapeType

public static final StiShapeId StiRegularPentagonShapeType

StiPlusShapeType

public static final StiShapeId StiPlusShapeType

StiParallelogramShapeType

public static final StiShapeId StiParallelogramShapeType

StiMultiplyShapeType

public static final StiShapeId StiMultiplyShapeType

StiMinusShapeType

public static final StiShapeId StiMinusShapeType

StiFrameShapeType

public static final StiShapeId StiFrameShapeType

StiFlowchartSortShapeType

public static final StiShapeId StiFlowchartSortShapeType

StiFlowchartPreparationShapeType

public static final StiShapeId StiFlowchartPreparationShapeType

StiFlowchartOffPageConnectorShapeType

public static final StiShapeId StiFlowchartOffPageConnectorShapeType

StiFlowchartManualInputShapeType

public static final StiShapeId StiFlowchartManualInputShapeType

StiFlowchartDecisionShapeType

public static final StiShapeId StiFlowchartDecisionShapeType

StiFlowchartCollateShapeType

public static final StiShapeId StiFlowchartCollateShapeType

StiFlowchartCardShapeType

public static final StiShapeId StiFlowchartCardShapeType

StiEqualShapeType

public static final StiShapeId StiEqualShapeType

StiDivisionShapeType

public static final StiShapeId StiDivisionShapeType

StiChevronShapeType

public static final StiShapeId StiChevronShapeType

StiBentArrowShapeType

public static final StiShapeId StiBentArrowShapeType

StiComplexArrowShapeType

public static final StiShapeId StiComplexArrowShapeType

StiVerticalLineShapeType

public static final StiShapeId StiVerticalLineShapeType

StiTriangleShapeType

public static final StiShapeId StiTriangleShapeType

StiTopAndBottomLineShapeType

public static final StiShapeId StiTopAndBottomLineShapeType

StiRoundedRectangleShapeType

public static final StiShapeId StiRoundedRectangleShapeType

StiRectangleShapeType

public static final StiShapeId StiRectangleShapeType

StiOvalShapeType

public static final StiShapeId StiOvalShapeType

StiLeftAndRightLineShapeType

public static final StiShapeId StiLeftAndRightLineShapeType

StiHorizontalLineShapeType

public static final StiShapeId StiHorizontalLineShapeType

StiDiagonalUpLineShapeType

public static final StiShapeId StiDiagonalUpLineShapeType

StiDiagonalDownLineShapeType

public static final StiShapeId StiDiagonalDownLineShapeType

StiArrowShapeType

public static final StiShapeId StiArrowShapeType
Method Detail

values

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

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

valueOf

public static StiShapeId 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