Enum Class PropagateTags

java.lang.Object
java.lang.Enum<PropagateTags>
com.atlan.model.enums.PropagateTags
All Implemented Interfaces:
AtlanEnum, Serializable, Comparable<PropagateTags>, Constable

public enum PropagateTags extends Enum<PropagateTags> implements AtlanEnum
PropagateTags indicates whether tags should propagate across the relationship instance. Tags can propagate: NONE - not at all ONE_TO_TWO - from end 1 to 2 TWO_TO_ONE - from end 2 to 1 BOTH - both ways Care needs to be taken when specifying. The use cases we are aware of where this flag is useful: - propagating confidentiality Atlan tags from a table to columns - ONE_TO_TWO could be used here - propagating Atlan tags around Glossary synonyms - BOTH could be used here. There is an expectation that further enhancements will allow more granular control of tag propagation and will address how to resolve conflicts.
  • Enum Constant Details

  • Method Details

    • values

      public static PropagateTags[] 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 PropagateTags 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
    • fromValue

      public static PropagateTags fromValue(String value)
    • getValue

      public String getValue()
      Specified by:
      getValue in interface AtlanEnum