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

com.emv.qrcode.decoder.mpm.MerchantAccountInformationReservedDecoder Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package com.emv.qrcode.decoder.mpm;

import com.emv.qrcode.core.exception.PresentedModeException;
import com.emv.qrcode.core.utils.TLVUtils;
import com.emv.qrcode.model.mpm.MerchantAccountInformationReserved;

// @formatter:off
public final class MerchantAccountInformationReservedDecoder extends DecoderMpm {

  public MerchantAccountInformationReservedDecoder(final String source) {
    super(source);
  }

  @Override
  protected MerchantAccountInformationReserved decode() throws PresentedModeException {
    final String value = iterator.next();
    return new MerchantAccountInformationReserved(TLVUtils.valueOf(value));
  }

}
// @formatter:on




© 2015 - 2025 Weber Informatics LLC | Privacy Policy