class NumeritajTipo::Neo4j::TypeConverters::SymbolConverter

Public Class Methods

call(value)
Alias for: to_ruby
convert_type() click to toggle source
# File lib/numeritaj_tipo/neo4j/type_converters/symbol_converter.rb, line 14
def convert_type
  Symbol
end
db_type() click to toggle source
# File lib/numeritaj_tipo/neo4j/type_converters/symbol_converter.rb, line 18
def db_type
  String
end
premitive_type() click to toggle source
# File lib/numeritaj_tipo/neo4j/type_converters/symbol_converter.rb, line 10
def premitive_type
  Symbol
end
to_db(value) click to toggle source
# File lib/numeritaj_tipo/neo4j/type_converters/symbol_converter.rb, line 22
def to_db(value)
  value.to_s
end
to_ruby(value) click to toggle source
# File lib/numeritaj_tipo/neo4j/type_converters/symbol_converter.rb, line 26
def to_ruby(value)
  value.to_sym
end
Also aliased as: call