com.apicatalog.cborld.decoder.DecoderConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iridium-cbor-ld-jre11 Show documentation
Show all versions of iridium-cbor-ld-jre11 Show documentation
A CBOR-based serialization for Linked Data
The newest version!
package com.apicatalog.cborld.decoder;
import java.util.Collection;
import java.util.Map;
import com.apicatalog.cborld.config.Config;
import com.apicatalog.cborld.decoder.value.ValueDecoder;
import com.apicatalog.cborld.document.DocumentDictionary;
import com.apicatalog.cborld.mapping.DecoderMappingProvider;
public interface DecoderConfig extends Config {
Map dictionaries();
Collection valueDecoders();
DecoderMappingProvider decoderMapping();
}