Uses of Class
org.reflections.Reflections

Packages that use Reflections
org.reflections   
org.reflections.serializers   
 

Uses of Reflections in org.reflections
 

Methods in org.reflections that return Reflections
static Reflections Reflections.collect()
          collect saved Reflection xml resources and merge it into a Reflections instance
 Reflections Reflections.collect(java.io.File file)
          merges saved Reflections resources from the given file, 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 classpath
 Reflections 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 classpath
 Reflections Reflections.collect(java.lang.String packagePrefix, com.google.common.base.Predicate<java.lang.String> resourceNameFilter)
          collect saved Reflections resources from all urls that contains the given packagePrefix and matches the given resourceNameFilter and de-serializes them using the serializer configured in the configuration
 Reflections Reflections.collect(java.lang.String packagePrefix, com.google.common.base.Predicate<java.lang.String> resourceNameFilter, Serializer serializer)
          collect saved Reflections resources from all urls that contains the given packagePrefix and matches the given resourceNameFilter and de-serializes them using the serializer configured in the configuration
 Reflections Reflections.merge(Reflections reflections)
          merges a Reflections instance metadata into this instance
 

Methods in org.reflections with parameters of type Reflections
 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
 Reflections XmlSerializer.read(java.io.InputStream inputStream)
           
 Reflections Serializer.read(java.io.InputStream inputStream)
          reads the input stream into a new Reflections instance, populating it's store
 Reflections JsonSerializer.read(java.io.InputStream inputStream)
           
 Reflections JavaCodeSerializer.read(java.io.InputStream inputStream)
           
 

Methods in org.reflections.serializers with parameters of type Reflections
 java.io.File XmlSerializer.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 filename
 java.io.File JsonSerializer.save(Reflections reflections, java.lang.String filename)
           
 java.io.File JavaCodeSerializer.save(Reflections reflections, java.lang.String name)
          name should be in the pattern: path/path/path/package.package.classname, for example
 java.lang.String XmlSerializer.toString(Reflections reflections)
           
 java.lang.String Serializer.toString(Reflections reflections)
          returns a string serialization of the given Reflections instance
 java.lang.String JsonSerializer.toString(Reflections reflections)
           
 java.lang.String JavaCodeSerializer.toString(Reflections reflections)
           
 



Copyright © 2010. All Rights Reserved.