class ActiveFedora::Indexing::Map

e.g. ‘creator_name’ => <IndexObject behaviors=[:stored_searchable, :facetable]>
This is a description of how properties should map to indexing strategies

def dup

def dup
  self.class.new(to_hash)
end

def initialize(hash = {})

def initialize(hash = {})
  @hash = hash
end

def merge(new_hash)

def merge(new_hash)
  self.class.new(to_hash.merge(new_hash))
end

def to_hash

def to_hash
  @hash.deep_dup
end