Class MapResourceFinder
- java.lang.Object
-
- org.codehaus.commons.compiler.util.resource.ResourceFinder
-
- org.codehaus.commons.compiler.util.resource.ListableResourceFinder
-
- org.codehaus.commons.compiler.util.resource.MapResourceFinder
-
public class MapResourceFinder extends ListableResourceFinder
AResourceFinderthat provides access to resource stored as byte arrays in aMap.
-
-
Field Summary
-
Fields inherited from class org.codehaus.commons.compiler.util.resource.ResourceFinder
EMPTY_RESOURCE_FINDER
-
-
Constructor Summary
Constructors Constructor Description MapResourceFinder()MapResourceFinder(java.util.Map<java.lang.String,byte[]> map)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceaddResource(java.lang.String fileName, byte[] data)Adds anotherResource, so that it can later be found withfindResource(String),ResourceFinder.findResourceAsStream(String)andresources().ResourceaddResource(java.lang.String fileName, java.lang.String data)ResourceaddResource(Resource resource)Adds anotherResource, so that it can later be found withfindResource(String),ResourceFinder.findResourceAsStream(String)andresources().ResourcefindResource(java.lang.String resourceName)Finds a resource by name and return it as aResourceobject.java.lang.Iterable<Resource>list(java.lang.String resourceNamePrefix, boolean recurse)Returns all resources who's names start with a given string.java.util.Collection<Resource>resources()voidsetLastModified(long lastModified)-
Methods inherited from class org.codehaus.commons.compiler.util.resource.ResourceFinder
findResourceAsStream
-
-
-
-
Method Detail
-
addResource
@Nullable public Resource addResource(java.lang.String fileName, byte[] data)
Adds anotherResource, so that it can later be found withfindResource(String),ResourceFinder.findResourceAsStream(String)andresources().- Returns:
- The resource that was previously associated with the fileName, or
null
-
addResource
@Nullable public Resource addResource(java.lang.String fileName, java.lang.String data)
- Parameters:
data- The text to store (in platform default encoding)- Returns:
- The resource that was previously associated with the fileName, or
null
-
addResource
public Resource addResource(Resource resource)
Adds anotherResource, so that it can later be found withfindResource(String),ResourceFinder.findResourceAsStream(String)andresources().- Returns:
- The resource that was previously associated with the fileName, or
null
-
resources
public java.util.Collection<Resource> resources()
- Returns:
- All resources that were previously added with
addResource(Resource)
-
setLastModified
public final void setLastModified(long lastModified)
- Parameters:
lastModified- The return value ofResource.lastModified()for the next resources added
-
findResource
@Nullable public final Resource findResource(java.lang.String resourceName)
Description copied from class:ResourceFinderFinds a resource by name and return it as aResourceobject.- Specified by:
findResourcein classResourceFinder- Parameters:
resourceName- Designates the resource; typically structured by slashes ("/") like "com/foo/pkg/Bar.class"- Returns:
nullif the resource could not be found
-
list
@Nullable public java.lang.Iterable<Resource> list(java.lang.String resourceNamePrefix, boolean recurse)
Description copied from class:ListableResourceFinderReturns all resources who's names start with a given string. Only resources with a content are included, no "special entries" of any kind, e.g. directories.If the prefix string ends with "/", you will get a proper directory listing (recurse
=false) or directory tree (recurse=true). Example:resourceFinder.list("dir/", true) => dir/ dir/afile dir/bfile dir/adir/ dir/adir/file dir/bdir/ dir/bdir/fileOtherwise, you will get a strange subset of a directory listing, resp. directory tree, as follows:
resourceFinder.list("dir/a", true) => dir/afile dir/adir/ dir/adir/file- Specified by:
listin classListableResourceFinder- Parameters:
resourceNamePrefix- E.g.""or"java/lang/"- Returns:
- All resources who's name starts with the given prefix;
nulliff a location designated by the resourceNamePrefix does not exist
-
-