Package rife.resources
Interface ResourceFinder
- All Known Implementing Classes:
AbstractResourceFinder,DatabaseResources,MemoryResources,ResourceFinderClasspath,ResourceFinderDirectories,ResourceFinderGroup
public interface ResourceFinder
This interface defines the methods that classes with
ResourceFinder functionalities have to implement.
A ResourceFinder provides an abstract way of working
with resources. According to a name, a resource can be searched for and its
location is returned as an URL object.
It is also possible to obtain a stream to read the resource's content,
to retrieve all its contents as a String and to obtain the
modification time of the resource.
- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetContent(String name) Retrieves the complete content of the resource that corresponds to the provided name.getContent(String name, String encoding) Retrieves the complete content of the resource that corresponds to the provided name.getContent(URL resource) Retrieves the complete content of the provided resource.getContent(URL resource, String encoding) Retrieves the complete content of the provided resource.longgetModificationTime(String name) Retrieves the modification time of the resource that corresponds to the provided name.longgetModificationTime(URL resource) Retrieves the modification time of the provided resource.getResource(String name) Retrieves the resource that corresponds to the provided name.<ResultType>
ResultTypeuseStream(String name, InputStreamUser<ResultType, ?> user) Returns a stream that can be used to read the contents of the resource that corresponds to the provided name.<ResultType>
ResultTypeuseStream(URL resource, InputStreamUser<ResultType, ?> user) Returns a stream that can be used to read the contents of the provided resource.
-
Method Details
-
getResource
Retrieves the resource that corresponds to the provided name.This method never throws an exception, but returns
nullin case of an exception.- Parameters:
name- the name of the resource to retrieve- Returns:
- the
URLobject that corresponds to the provided name; ornullif the resource couldn't be found or if an error occurred. - Since:
- 1.0
-
useStream
<ResultType> ResultType useStream(String name, InputStreamUser<ResultType, ?> user) throws ResourceFinderErrorException, InnerClassExceptionReturns a stream that can be used to read the contents of the resource that corresponds to the provided name.- Parameters:
name- the name of the resource to retrieveuser- an instance ofInputStreamUserthat contains the logic that will be executed with this stream- Returns:
- the return value from the
useInputStreammethod of the providedInputStreamUserinstance - Throws:
ResourceFinderErrorException- when an error occurred during the creation or opening of the stream.InnerClassException- when errors occurs inside theInputStreamUser- Since:
- 1.0
- See Also:
-
useStream
<ResultType> ResultType useStream(URL resource, InputStreamUser<ResultType, ?> user) throws ResourceFinderErrorException, InnerClassExceptionReturns a stream that can be used to read the contents of the provided resource.- Parameters:
resource- the resource to retrieveuser- an instance ofInputStreamUserthat contains the logic that will be executed with this stream- Returns:
- the return value from the
useInputStreammethod of the providedInputStreamUserinstance - Throws:
ResourceFinderErrorException- when an error occurred during the creation or opening of the stream.InnerClassException- when errors occurs inside theInputStreamUser- Since:
- 1.0
- See Also:
-
getContent
Retrieves the complete content of the resource that corresponds to the provided name. The content will be read into a string by using the platform's default encoding.- Parameters:
name- the name of the resource to retrieve- Returns:
- a
Stringobject that contains the complete content of the resource with the provided name; ornullif the resource couldn't be found. - Throws:
ResourceFinderErrorException- when an error occurred during the retrieval of the content.- Since:
- 1.0
- See Also:
-
getContent
Retrieves the complete content of the resource that corresponds to the provided name.- Parameters:
name- the name of the resource to retrieve the content fromencoding- the encoding that should be used to read the content- Returns:
- a
Stringobject that contains the complete content of the resource with the provided name; ornullif the resource couldn't be found. - Throws:
ResourceFinderErrorException- when an error occurred during the retrieval of the content or when the encoding is not supported.- Since:
- 1.0
- See Also:
-
getContent
Retrieves the complete content of the provided resource. The content will be read into a string by using the platform's default encoding.- Parameters:
resource- the resource to retrieve the content from- Returns:
- a
Stringobject that contains the complete content of the resource with the provided name; ornullif the resource couldn't be found. - Throws:
ResourceFinderErrorException- when an error occurred during the retrieval of the content or when the encoding is not supported.- Since:
- 1.0
- See Also:
-
getContent
Retrieves the complete content of the provided resource.- Parameters:
resource- the resource to retrieve the content fromencoding- the encoding that should be used to read the content- Returns:
- a
Stringobject that contains the complete content of the resource with the provided name; ornullif the resource couldn't be found. - Throws:
ResourceFinderErrorException- when an error occurred during the retrieval of the content or when the encoding is not supported.- Since:
- 1.0
- See Also:
-
getModificationTime
Retrieves the modification time of the resource that corresponds to the provided name.- Parameters:
name- the name of the resource to retrieve- Returns:
- a positive
longwith the modification time in milliseconds; or-1if the resource couldn't be found. - Throws:
ResourceFinderErrorException- when an error occurred during the retrieval of the modification time.- Since:
- 1.0
- See Also:
-
getModificationTime
Retrieves the modification time of the provided resource.- Parameters:
resource- the resource to retrieve the modification time from- Returns:
- a positive
longwith the modification time in milliseconds; or-1if the resource couldn't be found. - Throws:
ResourceFinderErrorException- when an error occurred during the retrieval of the modification time.- Since:
- 1.0
- See Also:
-