Enum DataEngineEventType
- java.lang.Object
-
- java.lang.Enum<DataEngineEventType>
-
- org.odpi.openmetadata.accessservices.dataengine.event.DataEngineEventType
-
- All Implemented Interfaces:
Serializable,Comparable<DataEngineEventType>
public enum DataEngineEventType extends Enum<DataEngineEventType> implements Serializable
DataEngineEventType describes the different types of events can be consumed by the Data Engine OMAS. Events are limited to assets that are in the zones listed in the supportedZones property passed to the Data Engine 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 intgetEventTypeCode()Return the int identifier used for indexing based on the enum.StringgetEventTypeDescription()Return the default description for the enum value - used when natural resource bundle is not available.StringgetEventTypeName()Return the string name used for messages that include the enum.StringtoString()static DataEngineEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DataEngineEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN_DATA_ENGINE_EVENT
public static final DataEngineEventType UNKNOWN_DATA_ENGINE_EVENT
-
DATA_ENGINE_REGISTRATION_EVENT
public static final DataEngineEventType DATA_ENGINE_REGISTRATION_EVENT
-
LINEAGE_MAPPINGS_EVENT
public static final DataEngineEventType LINEAGE_MAPPINGS_EVENT
-
PORT_ALIAS_EVENT
public static final DataEngineEventType PORT_ALIAS_EVENT
-
PORT_IMPLEMENTATION_EVENT
public static final DataEngineEventType PORT_IMPLEMENTATION_EVENT
-
SCHEMA_TYPE_EVENT
public static final DataEngineEventType SCHEMA_TYPE_EVENT
-
PROCESS_HIERARCHY_EVENT
public static final DataEngineEventType PROCESS_HIERARCHY_EVENT
-
DELETE_DATA_ENGINE_EVENT
public static final DataEngineEventType DELETE_DATA_ENGINE_EVENT
-
DELETE_SCHEMA_TYPE_EVENT
public static final DataEngineEventType DELETE_SCHEMA_TYPE_EVENT
-
DELETE_PORT_IMPLEMENTATION_EVENT
public static final DataEngineEventType DELETE_PORT_IMPLEMENTATION_EVENT
-
DELETE_PORT_ALIAS_EVENT
public static final DataEngineEventType DELETE_PORT_ALIAS_EVENT
-
DATABASE_EVENT
public static final DataEngineEventType DATABASE_EVENT
-
RELATIONAL_TABLE_EVENT
public static final DataEngineEventType RELATIONAL_TABLE_EVENT
-
DATA_FILE_EVENT
public static final DataEngineEventType DATA_FILE_EVENT
-
DELETE_DATABASE_EVENT
public static final DataEngineEventType DELETE_DATABASE_EVENT
-
DELETE_RELATIONAL_TABLE_EVENT
public static final DataEngineEventType DELETE_RELATIONAL_TABLE_EVENT
-
DELETE_DATA_FILE_EVENT
public static final DataEngineEventType DELETE_DATA_FILE_EVENT
-
DELETE_FOLDER_EVENT
public static final DataEngineEventType DELETE_FOLDER_EVENT
-
DELETE_CONNECTION_EVENT
public static final DataEngineEventType DELETE_CONNECTION_EVENT
-
DELETE_ENDPOINT_EVENT
public static final DataEngineEventType DELETE_ENDPOINT_EVENT
-
PROCESS_EVENT
public static final DataEngineEventType PROCESS_EVENT
-
DELETE_PROCESS_EVENT
public static final DataEngineEventType DELETE_PROCESS_EVENT
-
-
Method Detail
-
values
public static DataEngineEventType[] 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 (DataEngineEventType c : DataEngineEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataEngineEventType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<DataEngineEventType>
-
getEventTypeCode
public int getEventTypeCode()
Return the int identifier used for indexing based on the enum.- Returns:
- eventTypeCode identifier code
-
getEventTypeName
public String getEventTypeName()
Return the string name used for messages that include the enum.- Returns:
- event type name
-
getEventTypeDescription
public String getEventTypeDescription()
Return the default description for the enum value - used when natural resource bundle is not available.- Returns:
- default description
-
-