module Avro::LogicalTypes
Constants
- TYPES
Public Class Methods
type_adapter(type, logical_type)
click to toggle source
# File lib/avro/logical_types.rb 77 def self.type_adapter(type, logical_type) 78 return unless logical_type 79 80 TYPES.fetch(type, {}).fetch(logical_type, Identity) 81 end