Class: Lutaml::Xml::TransformationBuilder
- Inherits:
-
Model::TransformationBuilder
- Object
- Model::TransformationBuilder
- Lutaml::Xml::TransformationBuilder
- Defined in:
- lib/lutaml/xml/transformation_builder.rb
Overview
Builder for XML format transformations.
Creates Transformation instances for serializing models to XML.
Constant Summary collapse
- FORMATS =
Formats handled by this builder
[:xml].freeze
Class Method Summary collapse
-
.build(model_class, mapping, format, register) ⇒ Transformation
Build an XML transformation instance.
Methods inherited from Model::TransformationBuilder
Class Method Details
.build(model_class, mapping, format, register) ⇒ Transformation
Build an XML transformation instance.
23 24 25 |
# File 'lib/lutaml/xml/transformation_builder.rb', line 23 def self.build(model_class, mapping, format, register) Transformation.new(model_class, mapping, format, register) end |