Enum CimEventType

java.lang.Object
java.lang.Enum<CimEventType>
net.aifusion.metamodel.CimEventType
All Implemented Interfaces:
Serializable, Comparable<CimEventType>, java.lang.constant.Constable

public enum CimEventType extends Enum<CimEventType>
Enumeration describing CIM Event types
Author:
Sharad Singhal
  • Enum Constant Details

    • ADDED

      public static final CimEventType ADDED
      A named element was added to a repository or provider
    • REMOVED

      public static final CimEventType REMOVED
      A named element was removed from a repository or provider
    • CREATED

      public static final CimEventType CREATED
      A named element was created by some class
    • DELETED

      public static final CimEventType DELETED
      A named element was deleted by ?
    • UPDATED

      public static final CimEventType UPDATED
      A property was updated in a class or instance
    • INVOKED

      public static final CimEventType INVOKED
      A method was invoked in a class or instance
  • Method Details

    • values

      public static CimEventType[] 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

      public static CimEventType 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 name
      NullPointerException - if the argument is null