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

org.opensearch.ml.common.spi.tools.Parser Maven / Gradle / Ivy

The newest version!
/*
 * Copyright OpenSearch Contributors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.opensearch.ml.common.spi.tools;

/**
 * General parser interface.
 * @param  The input type
 * @param  The return type
 */
public interface Parser {

    /**
     * Parse input.
     * @param input the parser input
     * @return output the parser output
     */
    T parse(S input);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy