java.lang.Object
java.lang.Enum<AtlasPropagateTags>
org.odpi.openmetadata.adapters.connectors.apacheatlas.resource.properties.AtlasPropagateTags
All Implemented Interfaces:
Serializable, Comparable<AtlasPropagateTags>, Constable

public enum AtlasPropagateTags extends Enum<AtlasPropagateTags>
AtlasPropagateTags defines whether tags (Atlas classifications) are propagated along a relationship.
  • Enum Constant Details

    • NONE

      public static final AtlasPropagateTags NONE
      Do not propagate tags through relationship
    • ONE_TO_TWO

      public static final AtlasPropagateTags ONE_TO_TWO
      Propagate tags found on the entity at end1 to the entity found at end2.
    • TWO_TO_ONE

      public static final AtlasPropagateTags TWO_TO_ONE
      Propagate tags found on the entity at end2 to the entity found at end1.
    • BOTH

      public static final AtlasPropagateTags BOTH
      Propagate tags in both directions.
  • Method Details

    • values

      public static AtlasPropagateTags[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AtlasPropagateTags valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null