Package org.apache.tika.parser.dwg
Class AbstractDWGParser
- java.lang.Object
-
- org.apache.tika.parser.AbstractParser
-
- org.apache.tika.parser.dwg.AbstractDWGParser
-
- All Implemented Interfaces:
Serializable
,Parser
- Direct Known Subclasses:
DWGParser
,DWGReadParser
public abstract class AbstractDWGParser extends AbstractParser
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractDWGParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(ParseContext parseContext)
int
getCleanDwgReadOutputBatchSize()
String
getCleanDwgReadRegexToReplace()
String
getCleanDwgReadReplaceWith()
String
getDwgReadExecutable()
long
getDwgReadTimeout()
boolean
isCleanDwgReadOutput()
void
setCleanDwgReadOutput(boolean cleanDwgReadOutput)
void
setCleanDwgReadOutputBatchSize(int cleanDwgReadOutputBatchSize)
void
setCleanDwgReadRegexToReplace(String cleanDwgReadRegexToReplace)
void
setCleanDwgReadReplaceWith(String cleanDwgReadReplaceWith)
void
setDwgReadExecutable(String dwgReadExecutable)
void
setDwgReadTimeout(long dwgReadTimeout)
-
Methods inherited from class org.apache.tika.parser.AbstractParser
parse
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.tika.parser.Parser
getSupportedTypes, parse
-
-
-
-
Method Detail
-
configure
public void configure(ParseContext parseContext)
-
getDwgReadExecutable
public String getDwgReadExecutable()
-
isCleanDwgReadOutput
public boolean isCleanDwgReadOutput()
-
setCleanDwgReadOutput
@Field public void setCleanDwgReadOutput(boolean cleanDwgReadOutput)
-
getCleanDwgReadOutputBatchSize
public int getCleanDwgReadOutputBatchSize()
-
setCleanDwgReadOutputBatchSize
@Field public void setCleanDwgReadOutputBatchSize(int cleanDwgReadOutputBatchSize)
-
getCleanDwgReadRegexToReplace
public String getCleanDwgReadRegexToReplace()
-
setCleanDwgReadRegexToReplace
@Field public void setCleanDwgReadRegexToReplace(String cleanDwgReadRegexToReplace)
-
getCleanDwgReadReplaceWith
public String getCleanDwgReadReplaceWith()
-
setCleanDwgReadReplaceWith
@Field public void setCleanDwgReadReplaceWith(String cleanDwgReadReplaceWith)
-
getDwgReadTimeout
public long getDwgReadTimeout()
-
setDwgReadTimeout
@Field public void setDwgReadTimeout(long dwgReadTimeout)
-
-