Class: Neo4j::Shared::TypeConverters::StringConverter
- Inherits:
-
BaseConverter
- Object
- BaseConverter
- Neo4j::Shared::TypeConverters::StringConverter
- Defined in:
- lib/neo4j/shared/type_converters.rb
Class Method Summary collapse
- .convert_type ⇒ Object
- .db_type ⇒ Object
- .to_db(value) ⇒ Object (also: to_ruby)
Methods inherited from BaseConverter
Class Method Details
.convert_type ⇒ Object
91 92 93 |
# File 'lib/neo4j/shared/type_converters.rb', line 91 def convert_type String end |
.db_type ⇒ Object
95 96 97 |
# File 'lib/neo4j/shared/type_converters.rb', line 95 def db_type String end |
.to_db(value) ⇒ Object Also known as: to_ruby
99 100 101 |
# File 'lib/neo4j/shared/type_converters.rb', line 99 def to_db(value) value.to_s end |