All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.wshackle.fanuc.robotserver.FRELoadOptionConstants Maven / Gradle / Ivy

The newest version!
package com.github.wshackle.fanuc.robotserver  ;

import com4j.*;

/**
 * 

* An enumeration of constants used when loading a file. *

*/ public enum FRELoadOptionConstants implements ComEnum { /** *

* Normal file load *

*

* The value of this constant is 0 *

*/ frStandardLoad(0), /** *

* Overwrite TP program load *

*

* The value of this constant is 1 *

*/ frOverwriteTPLoad(1), /** *

* Temp pool PC program load *

*

* The value of this constant is 10 *

*/ frTempPCLoad(10), /** *

* Normal variable file load *

*

* The value of this constant is 0 *

*/ frStandardVarLoad(0), /** *

* Convert variable file load *

*

* The value of this constant is 16 *

*/ frConvertVarLoad(16), /** *

* Cold start sysvar file load *

*

* The value of this constant is 17 *

*/ frColdSysLoad(17), /** *

* Convert at cold start sysvar file load *

*

* The value of this constant is 18 *

*/ frColdConvertSysLoad(18), /** *

* DRAM only variable file load *

*

* The value of this constant is 19 *

*/ frDramOnlyVarLoad(19), /** *

* Override mismatch errors variable file load *

*

* The value of this constant is 256 *

*/ frOverrideVarLoad(256), ; private final int value; FRELoadOptionConstants(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy