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

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

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

import com4j.*;

/**
 * 

* An enumeration of constants used to identify and set the program protection. *

*/ public enum FREProtectionConstants implements ComEnum { /** *

* Read/Write program protection. *

*

* The value of this constant is 1 *

*/ frReadWriteProtection(1), /** *

* Read-only program protection. *

*

* The value of this constant is 2 *

*/ frReadOnlyProtection(2), ; private final int value; FREProtectionConstants(int value) { this.value=value; } public int comEnumValue() { return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy