org.openmetadata.schema.Function Maven / Gradle / Ivy
package org.openmetadata.schema;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.openmetadata.schema.type.Function.ParameterType;
@Retention(RetentionPolicy.RUNTIME)
@Target(value = ElementType.METHOD)
public @interface Function {
String name();
String input();
String description();
String[] examples();
ParameterType paramInputType() default ParameterType.NOT_REQUIRED;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy