Uses of Class
org.reflections.Reflections
-
Packages that use Reflections Package Description org.reflections org.reflections.serializers -
-
Uses of Reflections in org.reflections
Methods in org.reflections that return Reflections Modifier and Type Method Description static Reflections
Reflections. collect()
collect saved Reflection xml resources and merge it into a Reflections instanceReflections
Reflections. collect(java.io.File file)
merges saved Reflections resources from the given file, using the serializer configured in this instance's ConfigurationReflections
Reflections. collect(java.io.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 Reflections
Reflections. collect(java.lang.String packagePrefix, java.util.function.Predicate<java.lang.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 serializerXmlSerializer
or using the optionally supplied optionalSerializerReflections
Reflections. merge(Reflections reflections)
merges a Reflections instance metadata into this instanceMethods in org.reflections with parameters of type Reflections Modifier and Type Method Description Reflections
Reflections. 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 Reflections Modifier and Type Method Description Reflections
JavaCodeSerializer. read(java.io.InputStream inputStream)
Reflections
JsonSerializer. read(java.io.InputStream inputStream)
Reflections
Serializer. read(java.io.InputStream inputStream)
reads the input stream into a new Reflections instance, populating it's storeReflections
XmlSerializer. read(java.io.InputStream inputStream)
Methods in org.reflections.serializers with parameters of type Reflections Modifier and Type Method Description private org.dom4j.Document
XmlSerializer. createDocument(Reflections reflections)
java.io.File
JavaCodeSerializer. save(Reflections reflections, java.lang.String name)
name should be in the pattern: path/path/path/package.package.classname, for examplejava.io.File
JsonSerializer. save(Reflections reflections, java.lang.String filename)
java.io.File
Serializer. save(Reflections reflections, java.lang.String filename)
saves a Reflections instance into the given filenamejava.io.File
XmlSerializer. save(Reflections reflections, java.lang.String filename)
java.lang.String
JavaCodeSerializer. toString(Reflections reflections)
java.lang.String
JsonSerializer. toString(Reflections reflections)
java.lang.String
Serializer. toString(Reflections reflections)
returns a string serialization of the given Reflections instancejava.lang.String
XmlSerializer. toString(Reflections reflections)
-