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

com.documents4j.api.ISelectionStrategy Maven / Gradle / Ivy

There is a newer version: 1.1.12
Show newest version
package com.documents4j.api;

import java.util.List;

/**
 * A strategy to select a converter from several available converters.
 */
public interface ISelectionStrategy {

    /**
     * Selects the next converter.
     *
     * @param converters The currently available converters with at least on converter available.
     * @return The converter that was selected.
     */
    IConverter select(List converters);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy