com.stimulsoft.base.drawing.enums
Enum StiRectangleCorners

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

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

Enum represent rectangle alignment Copyright Stimulsoft


Enum Constant Summary
All
           
LeftBottom
           
LeftBottomRight
           
LeftTop
           
LeftTopRight
           
None
           
RightBottom
           
RightTop
           
TopLeftBottom
           
TopRightBottom
           
 
Method Summary
 int getValue()
          Return int StiRectangleCorners value
static StiRectangleCorners valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiRectangleCorners[] 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

None

public static final StiRectangleCorners None

LeftTop

public static final StiRectangleCorners LeftTop

RightTop

public static final StiRectangleCorners RightTop

LeftTopRight

public static final StiRectangleCorners LeftTopRight

LeftBottom

public static final StiRectangleCorners LeftBottom

TopLeftBottom

public static final StiRectangleCorners TopLeftBottom

RightBottom

public static final StiRectangleCorners RightBottom

TopRightBottom

public static final StiRectangleCorners TopRightBottom

LeftBottomRight

public static final StiRectangleCorners LeftBottomRight

All

public static final StiRectangleCorners All
Method Detail

values

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

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

valueOf

public static StiRectangleCorners 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()
Return int StiRectangleCorners value

Returns:
int StiRectangleCorners value