class Neo4j::Shared::TypeConverters::IntegerConverter
Public Class Methods
convert_type()
click to toggle source
# File lib/neo4j/shared/type_converters.rb 29 def convert_type 30 Integer 31 end
db_type()
click to toggle source
# File lib/neo4j/shared/type_converters.rb 33 def db_type 34 Integer 35 end
to_db(value)
click to toggle source
# File lib/neo4j/shared/type_converters.rb 37 def to_db(value) 38 value.to_i 39 end
Also aliased as: to_ruby