com.github.wshackle.fanuc.robotserver.FREVarStorageClassConstants Maven / Gradle / Ivy
The newest version!
package com.github.wshackle.fanuc.robotserver ;
import com4j.*;
/**
*
* An enumeration of constants identifying the storage class of variables.
*
*/
public enum FREVarStorageClassConstants implements ComEnum {
/**
*
* Designates DRAM storage for this variable.
*
*
* The value of this constant is 0
*
*/
frVarDRAM(0),
/**
*
* Designates CMOS storage for this variable.
*
*
* The value of this constant is 253
*
*/
frVarCMOS(253),
/**
*
* Designates shared CMOS storage for this variable.
*
*
* The value of this constant is 252
*
*/
frVarFastCMOS(252),
;
private final int value;
FREVarStorageClassConstants(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy