All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.daisy.dotify.common.splitter.SplitResult Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy