com.github.wshackle.fanuc.robotneighborhood.FRERNEventIDConstants Maven / Gradle / Ivy
package com.github.wshackle.fanuc.robotneighborhood ;
import com4j.*;
/**
*/
public enum FRERNEventIDConstants implements ComEnum {
/**
*
* This event notifies the client when a service has changed state on the controller.
*
*
* The value of this constant is 1
*
*/
frRNServiceOnStateChangeEventID(1),
/**
*
* Occurs when a change in a connections status is detected.
*
*
* The value of this constant is 1
*
*/
frRNVirtualRobotOnConnectionStatusChangeEventID(1),
/**
*
* Occurs when the start mode of the virtual robot changes.
*
*
* The value of this constant is 2
*
*/
frRNVirtualRobotOnStartSequenceChangeEventID(2),
/**
*
* Occurs when the sequence number changes during startup.
*
*
* The value of this constant is 3
*
*/
frRNVirtualRobotOnStartModeChangeEventID(3),
/**
*
* Occurs when an asynchronous error from the virtual controller is encountered.
*
*
* The value of this constant is 4
*
*/
frRNVirtualRobotOnErrorEventID(4),
/**
*
* Occurs when a change in a connections status is detected.
*
*
* The value of this constant is 1
*
*/
frRNRobotOnConnectionStatusChangeEventID(1),
/**
*
* Occurs when in change is made to the name or structure of this object or its ancestry.
*
*
* The value of this constant is 1
*
*/
frRNRobotsOnOrganizationChangeEventID(1),
/**
*
* Occurs when the connection status changes on a robot that is a descendant of this object.
*
*
* The value of this constant is 2
*
*/
frRNRobotsOnRobotConnectionStatusChangeEventID(2),
/**
*
* Occurs when the content of the most recent response from a robot is different than the last.
*
*
* The value of this constant is 1
*
*/
frRNRDMResponsesOnChangeEventID(1),
/**
*
* Occurs when a robot that had previously responded, fails to respond now.
*
*
* The value of this constant is 2
*
*/
frRNRDMResponsesOnExpireEventID(2),
/**
*
* Occurs when a robot not currently in the responses collection responds to an RDM scan.
*
*
* The value of this constant is 3
*
*/
frRNRDMResponsesOnNewEventID(3),
;
private final int value;
FRERNEventIDConstants(int value) { this.value=value; }
public int comEnumValue() { return value; }
}