eu.interedition.collatex.suffixtree.Sequence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of collatex-core Show documentation
Show all versions of collatex-core Show documentation
A Java library for collating textual sources, for example, to produce an apparatus.
package eu.interedition.collatex.suffixtree;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* Represents a sequence of items. This plays the part of the string in a non
* generic suffix tree implementation. This object automatically appends a
* terminating item to the end of the instance which is included in all
* operations.
*
* @author Max Garfinkel
*/
public class Sequence> implements Iterable