com.github.wshackle.fanuc.robotserver.FREVarOverrideConstants Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver ;
import com4j.*;
/**
*
* Enumerated constants used for overriding controller restrictions on variables.
*
*/
public enum FREVarOverrideConstants implements ComEnum {
/**
*
* Don't override controller restrictions.
*
*
* The value of this constant is 0
*
*/
frVarNoOverride(0),
/**
*
* Override all access checking.
*
*
* The value of this constant is 1
*
*/
frVarAccessOverride(1),
/**
*
* Don't do any limit checking.
*
*
* The value of this constant is 2
*
*/
frVarLimitOverride(2),
/**
*
* Allow Refresh on the System Variables TopVar.
*
*
* The value of this constant is 4
*
*/
frRefreshSysvarsOverride(4),
/**
*
* Override every variable restriction possible.
*
*
* The value of this constant is -1
*
*/
frVarAllOverride(-1),
;
private final int value;
FREVarOverrideConstants(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy