Class: Operaton::Bpm::Engine::Variable::NullValue

Inherits:
TypedValue
  • Object
show all
Defined in:
lib/operaton/bpm/engine/variable/typed_value.rb

Overview

Mirrors org.operaton.bpm.engine.variable.impl.value.NullValueImpl

Constant Summary collapse

INSTANCE =
new

Instance Attribute Summary

Attributes inherited from TypedValue

#is_transient, #type, #value

Instance Method Summary collapse

Methods inherited from TypedValue

#to_s, #transient?

Constructor Details

#initialize(is_transient = false) ⇒ NullValue

Returns a new instance of NullValue.



91
92
93
# File 'lib/operaton/bpm/engine/variable/typed_value.rb', line 91

def initialize(is_transient = false)
  super(nil, ValueType::NULL, is_transient)
end