com.github.wshackle.fanuc.robotserver.FREPacketEventConstants Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver ;
import com4j.*;
/**
*
* An enumeration of constants associated with PacketEvent handling.
*
*/
public enum FREPacketEventConstants implements ComEnum {
/**
*
* The SubSystemCode code used by the KAREL Built-in?s and TPP Macros.
*
*
* The value of this constant is 115
*
*/
frSSC_KAREL(115),
/**
*
* Wild card for SubSystemCode trigger
*
*
* The value of this constant is 255
*
*/
frSSC_Wild(255),
/**
*
* Wild card for RequestCode Trigger
*
*
* The value of this constant is 255
*
*/
frReqC_Wild(255),
/**
*
* Wild card for PacketID trigger
*
*
* The value of this constant is -1
*
*/
frPID_Wild(-1),
;
private final int value;
FREPacketEventConstants(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy