Module: Operaton::Bpm::Client::Spi::DataFormat
- Included in:
- Variable::Impl::Format::Json::JsonDataFormat
- Defined in:
- lib/operaton/bpm/client/spi/data_format.rb
Overview
Mirrors org.operaton.bpm.client.spi.DataFormat
Instance Method Summary collapse
- #can_map(value) ⇒ Object
- #canonical_type_name(value) ⇒ Object
- #name ⇒ Object
- #read_value(value, type_identifier_or_class) ⇒ Object
- #write_value(value) ⇒ Object
Instance Method Details
#can_map(value) ⇒ Object
13 14 15 |
# File 'lib/operaton/bpm/client/spi/data_format.rb', line 13 def can_map(value) raise NotImplementedError end |
#canonical_type_name(value) ⇒ Object
25 26 27 |
# File 'lib/operaton/bpm/client/spi/data_format.rb', line 25 def canonical_type_name(value) raise NotImplementedError end |
#name ⇒ Object
9 10 11 |
# File 'lib/operaton/bpm/client/spi/data_format.rb', line 9 def name raise NotImplementedError end |
#read_value(value, type_identifier_or_class) ⇒ Object
21 22 23 |
# File 'lib/operaton/bpm/client/spi/data_format.rb', line 21 def read_value(value, type_identifier_or_class) raise NotImplementedError end |
#write_value(value) ⇒ Object
17 18 19 |
# File 'lib/operaton/bpm/client/spi/data_format.rb', line 17 def write_value(value) raise NotImplementedError end |