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

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

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

import com4j.*;

/**
 * 

* An enumeration of constants used when opening or reopening a TP program from the FRCPrograms collection. *

*/ public enum FRERejectModeConstants { /** *

* No program reject. *

*

* The value of this constant is 0 *

*/ frNoReject, // 0 /** *

* Read program reject. *

*

* The value of this constant is 1 *

*/ frReadReject, // 1 /** *

* Write program reject. *

*

* The value of this constant is 2 *

*/ frWriteReject, // 2 /** *

* Read and Write program reject. *

*

* The value of this constant is 3 *

*/ frReadWriteReject, // 3 /** *

* Overwrite program reject. *

*

* The value of this constant is 4 *

*/ frOverwriteReject, // 4 /** *

* Read and Overwrite program reject. *

*

* The value of this constant is 5 *

*/ frReadOverwriteReject, // 5 /** *

* Write program reject. *

*

* The value of this constant is 6 *

*/ frWriteOverwriteReject, // 6 /** *

* All program reject. *

*

* The value of this constant is 7 *

*/ frAllReject, // 7 }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy