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

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

There is a newer version: 1.6.0-rc1
Show newest version
package org.openmetadata.schema;

import java.util.List;
import org.openmetadata.schema.type.TagLabel;

public interface FieldInterface {
  String getName();

  String getDisplayName();

  String getDescription();

  String getDataTypeDisplay();

  String getFullyQualifiedName();

  List getTags();

  default void setTags(List tags) {
    /* no-op implementation to be overridden */
  }

  List getChildren();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy