Enum Class ActionTypes

java.lang.Object
java.lang.Enum<ActionTypes>
de.iip_ecosphere.platform.transport.status.ActionTypes
All Implemented Interfaces:
ActionType, Serializable, Comparable<ActionTypes>, Constable

public enum ActionTypes extends Enum<ActionTypes> implements ActionType
The default action types.
Author:
Holger Eichelberger, SSE
  • Enum Constant Details

    • ADDED

      public static final ActionTypes ADDED
      Component was added and occurred.
    • CHANGED

      public static final ActionTypes CHANGED
      Component was changed (may be refined).
    • REMOVED

      public static final ActionTypes REMOVED
      Component was removed and disappeared.
    • PROCESS

      public static final ActionTypes PROCESS
      Something is being processed. Taskid shall be set.
    • RESULT

      public static final ActionTypes RESULT
      Result of an asynchronous operation. Taskid shall be set.
    • ERROR

      public static final ActionTypes ERROR
      Failure of an asynchronous operation. Taskid shall be set.
  • Constructor Details

    • ActionTypes

      private ActionTypes()
  • Method Details

    • values

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

      public static ActionTypes valueOf(String name)
      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 name
      NullPointerException - if the argument is null