Package com.atlan.model.enums
Enum Class PropagateTags
- All Implemented Interfaces:
AtlanEnum
,Serializable
,Comparable<PropagateTags>
,Constable
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic PropagateTags
getValue()
static PropagateTags
Returns the enum constant of this class with the specified name.static PropagateTags[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
-
ONE_TO_TWO
-
TWO_TO_ONE
-
BOTH
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
fromValue
-
getValue
-