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);
}