Class ChunkingFactory
- java.lang.Object
- 
- org.apache.tika.parser.microsoft.onenote.fsshttpb.streamobj.chunking.ChunkingFactory
 
- 
 public class ChunkingFactory extends Object This class is used to create instance of AbstractChunking.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractChunkingcreateChunkingInstance(byte[] fileContent)This method is used to create the instance of AbstractChunking.static AbstractChunkingcreateChunkingInstance(byte[] fileContent, ChunkingMethod chunkingMethod)This method is used to create the instance of AbstractChunking.static AbstractChunkingcreateChunkingInstance(IntermediateNodeObject nodeObject)This method is used to create the instance of AbstractChunking.
 
- 
- 
- 
Method Detail- 
createChunkingInstancepublic static AbstractChunking createChunkingInstance(byte[] fileContent) This method is used to create the instance of AbstractChunking.- Parameters:
- fileContent- The content of the file.
- Returns:
- The instance of AbstractChunking.
 
 - 
createChunkingInstancepublic static AbstractChunking createChunkingInstance(IntermediateNodeObject nodeObject) throws TikaException, IOException This method is used to create the instance of AbstractChunking.- Parameters:
- nodeObject- Specify the root node object.
- Returns:
- The instance of AbstractChunking.
- Throws:
- TikaException
- IOException
 
 - 
createChunkingInstancepublic static AbstractChunking createChunkingInstance(byte[] fileContent, ChunkingMethod chunkingMethod) This method is used to create the instance of AbstractChunking.- Parameters:
- fileContent- The content of the file.
- chunkingMethod- The type of chunking methods.
- Returns:
- The instance of AbstractChunking.
 
 
- 
 
-