Sha256: 046b894afc5915c7281a01b2f26a0c462217973cc2e328855bac59f05187b848
Contents?: true
Size: 871 Bytes
Versions: 10
Compression:
Stored size: 871 Bytes
Contents
module MarkLogic module DatabaseSettings class Index def self.from_json(type, json) case type when 'range-element-index' RangeElementIndex.from_json(json) when 'element-word-lexicon' ElementWordLexicon.from_json(json) when 'range-path-index' RangepathIndex.from_json(json) when 'range-field-index' RangeFieldIndex.from_json(json) when 'geospatial-element-index' GeospatialElementIndex.from_json(json) when 'geospatial-element-child-index' GeospatialElementChildIndex.from_json(json) when 'geospatial-element-pair-index' GeospatialElementPairIndex.from_json(json) when 'geospatial-path-index' GeospatialPathIndex.from_json(json) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems