Class: Openapi3Parser::NodeFactory::Array
- Inherits:
-
Object
- Object
- Openapi3Parser::NodeFactory::Array
- Defined in:
- lib/openapi3_parser/node_factory/array.rb
Defined Under Namespace
Classes: ValidNodeBuilder
Instance Attribute Summary collapse
-
#context ⇒ Object
readonly
Returns the value of attribute context.
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#default ⇒ Object
readonly
Returns the value of attribute default.
-
#validation ⇒ Object
readonly
Returns the value of attribute validation.
-
#value_factory ⇒ Object
readonly
Returns the value of attribute value_factory.
-
#value_input_type ⇒ Object
readonly
Returns the value of attribute value_input_type.
Instance Method Summary collapse
- #errors ⇒ Object
-
#initialize(context, default: [], value_input_type: nil, value_factory: nil, validate: nil) ⇒ Array
constructor
A new instance of Array.
- #inspect ⇒ Object
- #nil_input? ⇒ Boolean
- #node ⇒ Object
- #raw_input ⇒ Object
- #resolved_input ⇒ Object
- #valid? ⇒ Boolean
Constructor Details
#initialize(context, default: [], value_input_type: nil, value_factory: nil, validate: nil) ⇒ Array
Returns a new instance of Array.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 15 def initialize( context, default: [], value_input_type: nil, value_factory: nil, validate: nil ) @context = context @default = default @value_input_type = value_input_type @value_factory = value_factory @validation = validate @data = build_data(context.input) end |
Instance Attribute Details
#context ⇒ Object (readonly)
Returns the value of attribute context.
12 13 14 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 12 def context @context end |
#data ⇒ Object (readonly)
Returns the value of attribute data.
12 13 14 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 12 def data @data end |
#default ⇒ Object (readonly)
Returns the value of attribute default.
12 13 14 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 12 def default @default end |
#validation ⇒ Object (readonly)
Returns the value of attribute validation.
12 13 14 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 12 def validation @validation end |
#value_factory ⇒ Object (readonly)
Returns the value of attribute value_factory.
12 13 14 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 12 def value_factory @value_factory end |
#value_input_type ⇒ Object (readonly)
Returns the value of attribute value_input_type.
12 13 14 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 12 def value_input_type @value_input_type end |
Instance Method Details
#errors ⇒ Object
46 47 48 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 46 def errors @errors ||= ValidNodeBuilder.errors(self) end |
#inspect ⇒ Object
57 58 59 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 57 def inspect %{#{self.class.name}(#{context.source_location.inspect})} end |
#nil_input? ⇒ Boolean
38 39 40 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 38 def nil_input? context.input.nil? end |
#node ⇒ Object
50 51 52 53 54 55 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 50 def node @node ||= begin data = ValidNodeBuilder.data(self) data.nil? ? nil : build_node(data) end end |
#raw_input ⇒ Object
30 31 32 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 30 def raw_input context.input end |
#resolved_input ⇒ Object
34 35 36 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 34 def resolved_input @resolved_input ||= build_resolved_input end |
#valid? ⇒ Boolean
42 43 44 |
# File 'lib/openapi3_parser/node_factory/array.rb', line 42 def valid? errors.empty? end |