com.github.wshackle.fanuc.robotserver.FREVarAccessCodeConstants Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver ;
import com4j.*;
/**
*
* An enumeration of constants identifying the access of variables.
*
*/
public enum FREVarAccessCodeConstants implements ComEnum {
/**
*
* No variable access.
*
*
* The value of this constant is 0
*
*/
frVarNoAccess(0),
/**
*
* Read only variable access.
*
*
* The value of this constant is 1
*
*/
frVarReadAccess(1),
/**
*
* Read and Write variable access.
*
*
* The value of this constant is 3
*
*/
frVarReadWriteAccess(3),
/**
*
* Use field protection variable access.
*
*
* The value of this constant is 5
*
*/
frVarFieldProtectionAccess(5),
/**
*
* Requires motion control for variable access.
*
*
* The value of this constant is 8
*
*/
frVarMotionControlAccess(8),
/**
*
* Requires application control for variable access.
*
*
* The value of this constant is 16
*
*/
frVarApplicationControlAccess(16),
;
private final int value;
FREVarAccessCodeConstants(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy