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

org.openmetadata.schema.Function Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
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