Uses of Class
com.rm5248.serial.SerialPort.StopBits
-
-
Uses of SerialPort.StopBits in com.rm5248.serial
Methods in com.rm5248.serial that return SerialPort.StopBits Modifier and Type Method Description SerialPort.StopBitsSerialPort. getStopBits()Get the number of stop bits.static SerialPort.StopBitsSerialPort.StopBits. valueOf(String name)Returns the enum constant of this type with the specified name.static SerialPort.StopBits[]SerialPort.StopBits. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.rm5248.serial with parameters of type SerialPort.StopBits Modifier and Type Method Description voidSerialPort. setStopBits(SerialPort.StopBits stop)Set the stop bits of the serial port, after the port has been opened.SerialPortBuilderSerialPortBuilder. setStopBits(SerialPort.StopBits stopBits)Constructors in com.rm5248.serial with parameters of type SerialPort.StopBits Constructor Description SerialPort(String portName, SerialPort.BaudRate rate, SerialPort.DataBits data, SerialPort.StopBits stop)Open the specified port, no parity or flow controlSerialPort(String portName, SerialPort.BaudRate rate, SerialPort.DataBits data, SerialPort.StopBits stop, int controlFlags)Open the specified port, no parity or flow controlSerialPort(String portName, SerialPort.BaudRate rate, SerialPort.DataBits data, SerialPort.StopBits stop, SerialPort.Parity parity)Open the specified port, no flow control, with all control line flagsSerialPort(String portName, SerialPort.BaudRate rate, SerialPort.DataBits data, SerialPort.StopBits stop, SerialPort.Parity parity, int controlLineFlags)Open the specified port, no flow control, with the specified control line flagsSerialPort(String portName, SerialPort.BaudRate rate, SerialPort.DataBits data, SerialPort.StopBits stop, SerialPort.Parity parity, SerialPort.FlowControl flow)Open the specified port, defining all optionsSerialPort(String portName, SerialPort.BaudRate rate, SerialPort.DataBits data, SerialPort.StopBits stop, SerialPort.Parity parity, SerialPort.FlowControl flow, int controlFlags)Open the specified port, defining all options
-