class Neo4j::Shared::TypeConverters::StringConverter

Public Class Methods

convert_type() click to toggle source
   # File lib/neo4j/shared/type_converters.rb
88 def convert_type
89   String
90 end
db_type() click to toggle source
   # File lib/neo4j/shared/type_converters.rb
92 def db_type
93   String
94 end
to_db(value) click to toggle source
   # File lib/neo4j/shared/type_converters.rb
96 def to_db(value)
97   value.to_s
98 end
Also aliased as: to_ruby
to_ruby(value)
Alias for: to_db