Package org.reflections.serializers
Interface Serializer
-
- All Known Implementing Classes:
JavaCodeSerializer
,JsonSerializer
,XmlSerializer
public interface Serializer
Serilizer of aReflections
instance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Reflections
read(InputStream inputStream)
reads the input stream into a new Reflections instance, populating it's storeFile
save(Reflections reflections, String filename)
saves a Reflections instance into the given filenameString
toString(Reflections reflections)
returns a string serialization of the given Reflections instance
-
-
-
Method Detail
-
read
Reflections read(InputStream inputStream)
reads the input stream into a new Reflections instance, populating it's store
-
save
File save(Reflections reflections, String filename)
saves a Reflections instance into the given filename
-
toString
String toString(Reflections reflections)
returns a string serialization of the given Reflections instance
-
-