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

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

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

import com4j.*;

/**
 * 

* An enumeration of constants that identify states of a pipe. *

*/ public enum FREPipeStateConstants implements ComEnum { /** *

* Indicates that the pipe has overflowed. *

*

* The value of this constant is 32 *

*/ frPipeOverflowedState(32), /** *

* Indicates that the pipe is flushed. *

*

* The value of this constant is 64 *

*/ frPipeFlushedState(64), /** *

* Indicates that the pipe is currently active. *

*

* The value of this constant is 2 *

*/ frPipeActiveState(2), /** *

* Indicates that the pipe overflowed temporarily, then continued. *

*

* The value of this constant is 256 *

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy