org.reflections.serializers.Serializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.reflections
Show all versions of org.apache.servicemix.bundles.reflections
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package org.reflections.serializers;
import org.reflections.Reflections;
import java.io.File;
import java.io.InputStream;
/** Serilizer of a {@link org.reflections.Reflections} instance */
public interface Serializer {
/** reads the input stream into a new Reflections instance, populating it's store */
Reflections read(InputStream inputStream);
/** saves a Reflections instance into the given filename */
File save(Reflections reflections, String filename);
/** returns a string serialization of the given Reflections instance */
String toString(Reflections reflections);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy