Uses of Class
org.reflections.Reflections
Packages that use Reflections
-
Uses of Reflections in org.reflections
Methods in org.reflections that return ReflectionsModifier and TypeMethodDescriptionstatic ReflectionsReflections.collect()collect saved Reflection xml resources and merge it into a Reflections instancemerges saved Reflections resources from the given file, using the serializer configured in this instance's ConfigurationReflections.collect(InputStream inputStream) merges saved Reflections resources from the given input stream, using the serializer configured in this instance's Configuration
useful if you know the serialized resource location and prefer not to look it up the classpathstatic ReflectionsReflections.collect(String packagePrefix, Predicate<String> resourceNameFilter, Serializer... optionalSerializer) collect saved Reflections resources from all urls that contains the given packagePrefix and matches the given resourceNameFilter and de-serializes them using the default serializerXmlSerializeror using the optionally supplied optionalSerializerReflections.merge(Reflections reflections) merges a Reflections instance metadata into this instanceMethods in org.reflections with parameters of type ReflectionsModifier and TypeMethodDescriptionReflections.merge(Reflections reflections) merges a Reflections instance metadata into this instance -
Uses of Reflections in org.reflections.serializers
Methods in org.reflections.serializers that return ReflectionsModifier and TypeMethodDescriptionJavaCodeSerializer.read(InputStream inputStream) JsonSerializer.read(InputStream inputStream) Serializer.read(InputStream inputStream) reads the input stream into a new Reflections instance, populating it's storeXmlSerializer.read(InputStream inputStream) Methods in org.reflections.serializers with parameters of type ReflectionsModifier and TypeMethodDescriptionprivate org.dom4j.DocumentXmlSerializer.createDocument(Reflections reflections) JavaCodeSerializer.save(Reflections reflections, String name) name should be in the pattern: path/path/path/package.package.classname, for exampleJsonSerializer.save(Reflections reflections, String filename) Serializer.save(Reflections reflections, String filename) saves a Reflections instance into the given filenameXmlSerializer.save(Reflections reflections, String filename) JavaCodeSerializer.toString(Reflections reflections) JsonSerializer.toString(Reflections reflections) Serializer.toString(Reflections reflections) returns a string serialization of the given Reflections instanceXmlSerializer.toString(Reflections reflections)