Enum AssetLineageEventType
- java.lang.Object
-
- java.lang.Enum<AssetLineageEventType>
-
- org.odpi.openmetadata.accessservices.assetlineage.event.AssetLineageEventType
-
- All Implemented Interfaces:
Serializable,Comparable<AssetLineageEventType>
public enum AssetLineageEventType extends Enum<AssetLineageEventType> implements Serializable
AssetLineageEventType describes the different types of events can be produced by the Asset Lineage OMAS. Events are limited to assets that are in the zones listed in the supportedZones property passed to the Asset Lineage OMAS at start up (a null value here means all zones).
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssetLineageEventTypegetByEventTypeName(String eventTypeName)intgetEventTypeCode()Gets event type code.StringgetEventTypeDescription()Gets event type description.StringgetEventTypeName()Gets event type name.static AssetLineageEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AssetLineageEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESS_CONTEXT_EVENT
public static final AssetLineageEventType PROCESS_CONTEXT_EVENT
-
CLASSIFICATION_CONTEXT_EVENT
public static final AssetLineageEventType CLASSIFICATION_CONTEXT_EVENT
-
UPDATE_ENTITY_EVENT
public static final AssetLineageEventType UPDATE_ENTITY_EVENT
-
DELETE_ENTITY_EVENT
public static final AssetLineageEventType DELETE_ENTITY_EVENT
-
NEW_RELATIONSHIP_EVENT
public static final AssetLineageEventType NEW_RELATIONSHIP_EVENT
-
UPDATE_RELATIONSHIP_EVENT
public static final AssetLineageEventType UPDATE_RELATIONSHIP_EVENT
-
DELETE_RELATIONSHIP_EVENT
public static final AssetLineageEventType DELETE_RELATIONSHIP_EVENT
-
DECLASSIFIED_ENTITY_EVENT
public static final AssetLineageEventType DECLASSIFIED_ENTITY_EVENT
-
RECLASSIFIED_ENTITY_EVENT
public static final AssetLineageEventType RECLASSIFIED_ENTITY_EVENT
-
SEMANTIC_ASSIGNMENTS_EVENT
public static final AssetLineageEventType SEMANTIC_ASSIGNMENTS_EVENT
-
TERM_CATEGORIZATIONS_EVENT
public static final AssetLineageEventType TERM_CATEGORIZATIONS_EVENT
-
TERM_ANCHORS_EVENT
public static final AssetLineageEventType TERM_ANCHORS_EVENT
-
CATEGORY_ANCHORS_EVENT
public static final AssetLineageEventType CATEGORY_ANCHORS_EVENT
-
COLUMN_CONTEXT_EVENT
public static final AssetLineageEventType COLUMN_CONTEXT_EVENT
-
ASSET_CONTEXT_EVENT
public static final AssetLineageEventType ASSET_CONTEXT_EVENT
-
LINEAGE_MAPPINGS_EVENT
public static final AssetLineageEventType LINEAGE_MAPPINGS_EVENT
-
LINEAGE_SYNC_EVENT
public static final AssetLineageEventType LINEAGE_SYNC_EVENT
-
UNKNOWN_ASSET_LINEAGE_EVENT
public static final AssetLineageEventType UNKNOWN_ASSET_LINEAGE_EVENT
-
-
Method Detail
-
values
public static AssetLineageEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AssetLineageEventType c : AssetLineageEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssetLineageEventType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getEventTypeCode
public int getEventTypeCode()
Gets event type code.- Returns:
- the event type code
-
getEventTypeName
public String getEventTypeName()
Gets event type name.- Returns:
- the event type name
-
getEventTypeDescription
public String getEventTypeDescription()
Gets event type description.- Returns:
- the event type description
-
getByEventTypeName
public static AssetLineageEventType getByEventTypeName(String eventTypeName)
-
-