com.stimulsoft.report.components.enums
Enum StiConditionPermissions

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

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

Permissions of report conditions.


Enum Constant Summary
All
          All options.
BackColor
          Allow use BackColor in component.
Borders
          Allow use Borders in component.
Font
          Allow use Font name in component.
FontSize
          Allow use Font Size in component.
FontStyleBold
          Allow use Bold style of Font in component.
FontStyleItalic
          Allow use Italic style of Font in component.
FontStyleStrikeout
          Allow use Strikeout style of Font in component.
FontStyleUnderline
          Allow use Underline style of Font in component.
None
          Without any options.
TextColor
          Allow use TextColor in component.
 
Method Summary
static StiConditionPermissions forValue(int value)
           
 int getValue()
           
static StiConditionPermissions valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiConditionPermissions[] 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 StiConditionPermissions None
Without any options.


Font

public static final StiConditionPermissions Font
Allow use Font name in component.


FontSize

public static final StiConditionPermissions FontSize
Allow use Font Size in component.


FontStyleBold

public static final StiConditionPermissions FontStyleBold
Allow use Bold style of Font in component.


FontStyleItalic

public static final StiConditionPermissions FontStyleItalic
Allow use Italic style of Font in component.


FontStyleUnderline

public static final StiConditionPermissions FontStyleUnderline
Allow use Underline style of Font in component.


FontStyleStrikeout

public static final StiConditionPermissions FontStyleStrikeout
Allow use Strikeout style of Font in component.


TextColor

public static final StiConditionPermissions TextColor
Allow use TextColor in component.


BackColor

public static final StiConditionPermissions BackColor
Allow use BackColor in component.


Borders

public static final StiConditionPermissions Borders
Allow use Borders in component.


All

public static final StiConditionPermissions All
All options.

Method Detail

values

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

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

valueOf

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