Class AbstractChunking
- java.lang.Object
-
- org.apache.tika.parser.microsoft.onenote.fsshttpb.streamobj.chunking.AbstractChunking
-
- Direct Known Subclasses:
RDCAnalysisChunking
,SimpleChunking
,ZipFilesChunking
public abstract class AbstractChunking extends Object
This class specifies the base class for file chunking
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]
fileContent
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractChunking(byte[] fileContent)
Initializes a new instance of the AbstractChunking class.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract List<LeafNodeObject>
chunking()
This method is used to chunk the file data.
-
-
-
Method Detail
-
chunking
public abstract List<LeafNodeObject> chunking() throws IOException, TikaException
This method is used to chunk the file data.- Returns:
- A list of LeafNodeObjectData.
- Throws:
IOException
TikaException
-
-