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

com.github.chaosfirebolt.converter.api.initialization.source.InputSource Maven / Gradle / Ivy

package com.github.chaosfirebolt.converter.api.initialization.source;

/**
 * Represents a data source.
 *
 * @param  type of the returned data
 */
@FunctionalInterface
public interface InputSource {

  /**
   * Gets the data from this source
   *
   * @return data
   */
  I getInputData();
}