com.stimulsoft.report.components.enums
Enum StiConditionBorderSides

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

public enum StiConditionBorderSides
extends java.lang.Enum<StiConditionBorderSides>
implements IStiEnum

Sides of the border in conditions.


Enum Constant Summary
All
          Border from all sides.
Bottom
          Border on the bottom.
Left
          Border on the left.
None
          No border.
NotAssigned
          Not assigned.
Right
          Border on the right.
Top
          Border on the top.
 
Method Summary
static StiConditionBorderSides forValue(int value)
           
 int getValue()
           
static StiConditionBorderSides valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiConditionBorderSides[] 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 StiConditionBorderSides None
No border.


All

public static final StiConditionBorderSides All
Border from all sides.


Top

public static final StiConditionBorderSides Top
Border on the top.


Left

public static final StiConditionBorderSides Left
Border on the left.


Right

public static final StiConditionBorderSides Right
Border on the right.


Bottom

public static final StiConditionBorderSides Bottom
Border on the bottom.


NotAssigned

public static final StiConditionBorderSides NotAssigned
Not assigned.

Method Detail

values

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

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

valueOf

public static StiConditionBorderSides 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()
Specified by:
getValue in interface IStiEnum

forValue

public static StiConditionBorderSides forValue(int value)