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

org.opensearch.ml.common.annotation.MLAlgoOutput Maven / Gradle / Ivy

There is a newer version: 2.17.1.0
Show newest version
/*
 * Copyright OpenSearch Contributors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.opensearch.ml.common.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.opensearch.ml.common.output.MLOutputType;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface MLAlgoOutput {
    MLOutputType value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy