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

io.github.mmm.binary.codec.Decoder Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.binary.codec;

/**
 * Stateful class to {@link Base#decode(String) decode}.
 *
 * @since 1.0.0
 */
abstract class Decoder {

  protected final byte[] input;

  protected final BaseFormat format;

  protected Decoder(BaseFormat format, byte[] encodedData, int dataLength) {

    super();
    this.input = encodedData;
    this.format = format;
  }

  protected abstract byte[] decode();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy