Class: Operaton::Bpm::Engine::Variable::BooleanValue
- Inherits:
-
PrimitiveTypeValue
- Object
- TypedValue
- PrimitiveTypeValue
- Operaton::Bpm::Engine::Variable::BooleanValue
- Defined in:
- lib/operaton/bpm/engine/variable/typed_value.rb
Instance Attribute Summary
Attributes inherited from TypedValue
Instance Method Summary collapse
-
#initialize(value, is_transient = false) ⇒ BooleanValue
constructor
A new instance of BooleanValue.
Methods inherited from TypedValue
Constructor Details
#initialize(value, is_transient = false) ⇒ BooleanValue
Returns a new instance of BooleanValue.
35 36 37 |
# File 'lib/operaton/bpm/engine/variable/typed_value.rb', line 35 def initialize(value, is_transient = false) super(value, ValueType::BOOLEAN, is_transient) end |