com.github.wshackle.fanuc.robotserver.FRETaskStatusConstants Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver ;
import com4j.*;
/**
*
* Enumerated constants used for the task status attribute.
*
*/
public enum FRETaskStatusConstants implements ComEnum {
/**
*
* Idle task not running, paused, or aborted.
*
*
* The value of this constant is -32768
*
*/
frStatusIdle(-32768),
/**
*
* RUN request accepted
*
*
* The value of this constant is -2
*
*/
frStatusRunAccept(-2),
/**
*
* Task abort request accepted, abort in progress.
*
*
* The value of this constant is -1
*
*/
frStatusAborting(-1),
/**
*
* Task is running
*
*
* The value of this constant is 0
*
*/
frStatusRun(0),
/**
*
* Task is paused
*
*
* The value of this constant is 1
*
*/
frStatusPaused(1),
/**
*
* Task is aborted.
*
*
* The value of this constant is 2
*
*/
frStatusAborted(2),
;
private final int value;
FRETaskStatusConstants(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy