public class AgeRecogniser extends AbstractParser implements Initializable
| Modifier and Type | Field and Description |
|---|---|
static String |
MD_KEY_ESTIMATED_AGE |
static String |
MD_KEY_ESTIMATED_AGE_RANGE |
Tika |
secondaryParser |
| Constructor and Description |
|---|
AgeRecogniser() |
| Modifier and Type | Method and Description |
|---|---|
void |
checkInitialization(InitializableProblemHandler problemHandler) |
edu.usc.irds.agepredictor.authorage.AgePredicterLocal |
getAgePredictorClient() |
Set<MediaType> |
getSupportedTypes(ParseContext parseContext)
Returns the set of media types supported by this parser when used
with the given parse context.
|
void |
initialize(Map<String,Param> params) |
void |
parse(InputStream inputStream,
ContentHandler handler,
Metadata metadata,
ParseContext context)
Parses a document stream into a sequence of XHTML SAX events.
|
protected static void |
setAgePredictorClient(edu.usc.irds.agepredictor.authorage.AgePredicterLocal agePredicter)
USED in test cases to mock response of AgeClassifier
|
parsepublic static final String MD_KEY_ESTIMATED_AGE_RANGE
public static final String MD_KEY_ESTIMATED_AGE
public Tika secondaryParser
public void checkInitialization(InitializableProblemHandler problemHandler) throws TikaConfigException
checkInitialization in interface InitializableproblemHandler - if there is a problem and no
custom initializableProblemHandler has been configured
via Initializable parameters,
this is called to respond.TikaConfigExceptionpublic Set<MediaType> getSupportedTypes(ParseContext parseContext)
ParsergetSupportedTypes in interface ParserparseContext - parse contextpublic void initialize(Map<String,Param> params) throws TikaConfigException
initialize in interface Initializableparams - params to use for initializationTikaConfigExceptionpublic edu.usc.irds.agepredictor.authorage.AgePredicterLocal getAgePredictorClient()
throws opennlp.tools.util.InvalidFormatException,
IOException
opennlp.tools.util.InvalidFormatExceptionIOExceptionprotected static void setAgePredictorClient(edu.usc.irds.agepredictor.authorage.AgePredicterLocal agePredicter)
public void parse(InputStream inputStream, ContentHandler handler, Metadata metadata, ParseContext context) throws IOException
ParserThe given document stream is consumed but not closed by this method. The responsibility to close the stream remains on the caller.
Information about the parsing context can be passed in the context parameter. See the parser implementations for the kinds of context information they expect.
parse in interface ParserinputStream - the document stream (input)handler - handler for the XHTML SAX events (output)metadata - document metadata (input and output)context - parse contextIOException - if the document stream could not be readCopyright © 2007–2022 The Apache Software Foundation. All rights reserved.