Package net.aifusion.metamodel
Enum CimEventType
- All Implemented Interfaces:
Serializable
,Comparable<CimEventType>
,java.lang.constant.Constable
Enumeration describing CIM Event types
- Author:
- Sharad Singhal
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA named element was added to a repository or providerA named element was created by some classA named element was deleted by ?A method was invoked in a class or instanceA named element was removed from a repository or providerA property was updated in a class or instance -
Method Summary
Modifier and TypeMethodDescriptionstatic CimEventType
Returns the enum constant of this type with the specified name.static CimEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ADDED
A named element was added to a repository or provider -
REMOVED
A named element was removed from a repository or provider -
CREATED
A named element was created by some class -
DELETED
A named element was deleted by ? -
UPDATED
A property was updated in a class or instance -
INVOKED
A method was invoked in a class or instance
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-