Class: TJSON::DataType::NonScalar

Inherits:
TJSON::DataType show all
Defined in:
lib/tjson/datatype.rb

Overview

Non-scalar types

Direct Known Subclasses

Array, Object

Constant Summary

Constants inherited from TJSON::DataType

TAGS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from TJSON::DataType

[], generate, identify_type, parse

Constructor Details

#initialize(inner_type) ⇒ NonScalar

Returns a new instance of NonScalar.



60
61
62
# File 'lib/tjson/datatype.rb', line 60

def initialize(inner_type)
  @inner_type = inner_type
end

Instance Attribute Details

#inner_typeObject (readonly)

Returns the value of attribute inner_type.



58
59
60
# File 'lib/tjson/datatype.rb', line 58

def inner_type
  @inner_type
end

Instance Method Details

#==(other) ⇒ Object



72
73
74
# File 'lib/tjson/datatype.rb', line 72

def ==(other)
  self.class == other.class && inner_type == other.inner_type
end

#inspectObject



64
65
66
# File 'lib/tjson/datatype.rb', line 64

def inspect
  "#<#{self.class}<#{@inner_type.inspect}>>"
end

#scalar?Boolean

Returns:

  • (Boolean)


68
69
70
# File 'lib/tjson/datatype.rb', line 68

def scalar?
  false
end