com.stimulsoft.report.components.enums
Enum StiCheckStyle

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

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

Check style.


Enum Constant Summary
Check
          Check style.
CheckRectangle
          Check style.
Cross
          Cross style.
CrossCircle
          Check style.
CrossRectangle
          Check style.
DotCircle
          Check style.
DotRectangle
          Check style.
None
          Check style.
NoneCircle
          Check style.
NoneRectangle
          Check style.
 
Method Summary
static StiCheckStyle forValue(int value)
           
 int getValue()
           
static StiCheckStyle valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiCheckStyle[] 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

Cross

public static final StiCheckStyle Cross
Cross style.


Check

public static final StiCheckStyle Check
Check style.


CrossRectangle

public static final StiCheckStyle CrossRectangle
Check style.


CheckRectangle

public static final StiCheckStyle CheckRectangle
Check style.


CrossCircle

public static final StiCheckStyle CrossCircle
Check style.


DotCircle

public static final StiCheckStyle DotCircle
Check style.


DotRectangle

public static final StiCheckStyle DotRectangle
Check style.


NoneCircle

public static final StiCheckStyle NoneCircle
Check style.


NoneRectangle

public static final StiCheckStyle NoneRectangle
Check style.


None

public static final StiCheckStyle None
Check style.

Method Detail

values

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

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

valueOf

public static StiCheckStyle 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 StiCheckStyle forValue(int value)