class Neo4j::Shared::TypeConverters::StringConverter

Public Class Methods

convert_type() click to toggle source
   # File lib/neo4j/shared/type_converters.rb
91 def convert_type
92   String
93 end
db_type() click to toggle source
   # File lib/neo4j/shared/type_converters.rb
95 def db_type
96   String
97 end
to_db(value) click to toggle source
    # File lib/neo4j/shared/type_converters.rb
 99 def to_db(value)
100   value.to_s
101 end
Also aliased as: to_ruby
to_ruby(value)
Alias for: to_db