com.ibm.streams.operator.control

Enum Controllable.EventType

  • java.lang.Object
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Controllable.EventType>
    Enclosing interface:
    Controllable


    public static enum Controllable.EventType
    extends java.lang.Enum<Controllable.EventType>
    Job Control Plane connection event types. These events are a reflection of the javax.management.remote.JMXConnectionNotification notifications on the underlying connection object.
    Since:
    InfoSphere® Streams Version 4.0
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      ConnectionClosed
      The connection to the Job Control Plane has been closed.
      ConnectionFailure
      The connection to the Job Control Plane has failed.
      ConnectionOpened
      The connection to the Job Control Plane has opened.
      LostNotifications
      Notifications from MBeans in the Job Control Plane may have been lost.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static Controllable.EventType valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Controllable.EventType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • ConnectionOpened

        public static final Controllable.EventType ConnectionOpened
        The connection to the Job Control Plane has opened.
      • ConnectionFailure

        public static final Controllable.EventType ConnectionFailure
        The connection to the Job Control Plane has failed.
      • ConnectionClosed

        public static final Controllable.EventType ConnectionClosed
        The connection to the Job Control Plane has been closed.
      • LostNotifications

        public static final Controllable.EventType LostNotifications
        Notifications from MBeans in the Job Control Plane may have been lost.
    • Method Detail

      • values

        public static Controllable.EventType[] 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 (Controllable.EventType c : Controllable.EventType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Controllable.EventType valueOf(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null