org.daisy.dotify.common.splitter.SplitResult Maven / Gradle / Ivy
package org.daisy.dotify.common.splitter;
import java.util.List;
/**
* Provides a split result.
*
* @param the type of units
* @param the type of data source
* @author Joel Håkansson
*/
public interface SplitResult> {
/**
* The head of the result.
*
* @return returns the head
*/
public List head();
/**
* The tail of the result.
*
* @return returns the tail
*/
public U tail();
}