Enum Class StiConditionPermissions
java.lang.Object
java.lang.Enum<StiConditionPermissions>
com.stimulsoft.report.components.enums.StiConditionPermissions
- All Implemented Interfaces:
IStiEnum,Serializable,Comparable<StiConditionPermissions>,Constable
Permissions of report conditions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll options.Allow use BackColor in component.Allow use Borders in component.Allow use "Component is Enabled".Allow use Font name in component.Allow use Font Size in component.Allow use Bold style of Font in component.Allow use Italic style of Font in component.Allow use Strikeout style of Font in component.Allow use Underline style of Font in component.Without any options.Allow use TextColor in component. -
Method Summary
Modifier and TypeMethodDescriptionstatic StiConditionPermissionsforValue(int value) intgetValue()static StiConditionPermissionsReturns the enum constant of this class with the specified name.static StiConditionPermissions[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
Without any options. -
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. -
FontStyleUnderline
Allow use Underline style of Font in component. -
FontStyleStrikeout
Allow use Strikeout style of Font in component. -
TextColor
Allow use TextColor in component. -
BackColor
Allow use BackColor in component. -
Borders
Allow use Borders in component. -
Enabled
Allow use "Component is Enabled". Stored inverted for backwards compatibility. -
All
All options.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue() -
forValue
-