All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emv.qrcode.core.configuration.DecodersCpmMap Maven / Gradle / Ivy

package com.emv.qrcode.core.configuration;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import com.emv.qrcode.decoder.cpm.DecoderCpm;

public final class DecodersCpmMap {

  private static final Map, Class>> MAP_DECODERS = new ConcurrentHashMap<>();

  static {
  }

  private DecodersCpmMap() {
    super();
  }

  public static Class> getDecoder(final Class clazz) {
    return MAP_DECODERS.get(clazz);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy