Class: Reflekt::StringMeta
Instance Method Summary collapse
-
#initialize ⇒ StringMeta
constructor
A new instance of StringMeta.
- #load(value) ⇒ Object
- #serialize ⇒ Object
Methods inherited from Meta
Constructor Details
#initialize ⇒ StringMeta
Returns a new instance of StringMeta.
6 7 8 9 |
# File 'lib/meta/string_meta.rb', line 6 def initialize() @type = :string @length = nil end |
Instance Method Details
#load(value) ⇒ Object
14 15 16 |
# File 'lib/meta/string_meta.rb', line 14 def load(value) @length = value.length end |
#serialize ⇒ Object
18 19 20 21 22 23 |
# File 'lib/meta/string_meta.rb', line 18 def serialize() { :type => @type, :length => @length } end |