Tries to analyze an input stream and creates one of supportable HTML resources from it, taking into account a specified assumptive type, if it is not null
ResourceTypeDetector()
public ResourceTypeDetector()
detectTypeFromFilename(String filename)
public static IResourceType detectTypeFromFilename(String filename)
Detects a type from specified filename and returns an instance of respective IResourceType
Parameters:
Parameter
Type
Description
filename
java.lang.String
Input filename, from which this method will try to extract the resultant IResourceType implementation
Returns:IResourceType - IResourceType implementation on success or NULL on failure
public static IHtmlResource tryDetectResource(InputStream inputResourceStream, String name, IResourceType assumptiveFormat)
Tries to analyze an input stream and creates one of supportable HTML resources from it, taking into account a specified assumptive type, if it is not null
Parameters:
Parameter
Type
Description
inputResourceStream
java.io.InputStream
Input stream, which presumably contains an HTML resource. If invalid, an exception will be thrown.
name
java.lang.String
Resource name, which will be used for created and returned resource on success. Cannot be NULL, empty or whitespace
Assumed format of the input HTML resource, which is useful for achieving the best performance. If completely unknown, use the NULL value. May be incorrect, this will only worsen the performance.
Returns:IHtmlResource - Instance, which implements ‘IHtmlResource’ interface and represents one of supportable HTML resources on success, or NULL on failure
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.