com.github.chaosfirebolt.converter.api.initialization.source.ClassResourceFactory 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.
The newest version!
package com.github.chaosfirebolt.converter.api.initialization.source;
import java.io.InputStream;
/**
* Internal!
*/
class ClassResourceFactory implements ResourceFactory {
private final Class> clazz;
ClassResourceFactory(Class> clazz) {
this.clazz = clazz;
}
@Override
public InputStream create(String path) {
return clazz.getResourceAsStream(path);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy