
com.github.chaosfirebolt.converter.api.initialization.source.InputSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of roman-numeral-converter Show documentation
Show all versions of roman-numeral-converter Show documentation
Library for converting roman numerals to arabic and vice versa.
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy