gr.demokritos.iit.jinsect.algorithms.nlp
Interface IChunker

All Known Implementing Classes:
EntropyChunker

public interface IChunker

An interface describing a class that can chunk a string into substrings.


Method Summary
 java.util.List chunkString(java.lang.String sToChunk)
          The method that performs the chunking of a string.
 

Method Detail

chunkString

java.util.List chunkString(java.lang.String sToChunk)
The method that performs the chunking of a string.

Parameters:
sToChunk - The string to chunk.
Returns:
A List of substrings from the original string.