io.stepfunc.dnp3.CommandMode Maven / Gradle / Ivy
// This library is provided under the terms of a non-commercial license.
//
// Please refer to the source repository for details:
//
// https://github.com/stepfunc/dnp3/blob/master/LICENSE.txt
//
// Please contact Step Function I/O if you are interested in commercial license:
//
// [email protected]
package io.stepfunc.dnp3;
import org.joou.*;
/**
* Command operation mode
*/
public enum CommandMode
{
/**
* Perform a Direct Operate (0x05)
*/
DIRECT_OPERATE(0),
/**
* Perform a Select and Operate (0x03 then 0x04)
*/
SELECT_BEFORE_OPERATE(1),;
final private int value;
private CommandMode(int value)
{
this.value = value;
}
}