Class: Lutaml::Model::ImportRegistry::DeferredImport Private
- Inherits:
-
Struct
- Object
- Struct
- Lutaml::Model::ImportRegistry::DeferredImport
- Defined in:
- lib/lutaml/model/import_registry.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Represents a single deferred import
Instance Attribute Summary collapse
-
#method ⇒ Object
Returns the value of attribute method.
-
#owner_class ⇒ Object
Returns the value of attribute owner_class.
-
#resolved ⇒ Object
Returns the value of attribute resolved.
-
#symbol ⇒ Object
Returns the value of attribute symbol.
Instance Method Summary collapse
- #resolved? ⇒ Boolean private
Instance Attribute Details
#method ⇒ Object
Returns the value of attribute method
29 30 31 |
# File 'lib/lutaml/model/import_registry.rb', line 29 def method @method end |
#owner_class ⇒ Object
Returns the value of attribute owner_class
29 30 31 |
# File 'lib/lutaml/model/import_registry.rb', line 29 def owner_class @owner_class end |
#resolved ⇒ Object
Returns the value of attribute resolved
29 30 31 |
# File 'lib/lutaml/model/import_registry.rb', line 29 def resolved @resolved end |
#symbol ⇒ Object
Returns the value of attribute symbol
29 30 31 |
# File 'lib/lutaml/model/import_registry.rb', line 29 def symbol @symbol end |
Instance Method Details
#resolved? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
30 31 32 |
# File 'lib/lutaml/model/import_registry.rb', line 30 def resolved? resolved == true end |