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 ReflectionsReflections. collect()collect saved Reflection xml resources and merge it into a Reflections instanceReflectionsReflections. collect(java.io.File file)merges saved Reflections resources from the given file, using the serializer configured in this instance's ConfigurationReflectionsReflections. 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 ReflectionsReflections. 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 serializerXmlSerializeror using the optionally supplied optionalSerializerReflectionsReflections. merge(Reflections reflections)merges a Reflections instance metadata into this instanceMethods in org.reflections with parameters of type Reflections Modifier and Type Method Description ReflectionsReflections. 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 ReflectionsJavaCodeSerializer. read(java.io.InputStream inputStream)ReflectionsJsonSerializer. read(java.io.InputStream inputStream)ReflectionsSerializer. read(java.io.InputStream inputStream)reads the input stream into a new Reflections instance, populating it's storeReflectionsXmlSerializer. read(java.io.InputStream inputStream)Methods in org.reflections.serializers with parameters of type Reflections Modifier and Type Method Description private org.dom4j.DocumentXmlSerializer. createDocument(Reflections reflections)java.io.FileJavaCodeSerializer. save(Reflections reflections, java.lang.String name)name should be in the pattern: path/path/path/package.package.classname, for examplejava.io.FileJsonSerializer. save(Reflections reflections, java.lang.String filename)java.io.FileSerializer. save(Reflections reflections, java.lang.String filename)saves a Reflections instance into the given filenamejava.io.FileXmlSerializer. save(Reflections reflections, java.lang.String filename)java.lang.StringJavaCodeSerializer. toString(Reflections reflections)java.lang.StringJsonSerializer. toString(Reflections reflections)java.lang.StringSerializer. toString(Reflections reflections)returns a string serialization of the given Reflections instancejava.lang.StringXmlSerializer. toString(Reflections reflections)
-