Uses of Class
com.rm5248.serial.SerialPort.Parity
-
-
Uses of SerialPort.Parity in com.rm5248.serial
Methods in com.rm5248.serial that return SerialPort.Parity Modifier and Type Method Description SerialPort.ParitySerialPort. getParity()Get the parity of the serial port.static SerialPort.ParitySerialPort.Parity. valueOf(String name)Returns the enum constant of this type with the specified name.static SerialPort.Parity[]SerialPort.Parity. 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.Parity Modifier and Type Method Description voidSerialPort. setParity(SerialPort.Parity parity)Set the parity of the serial port, after the port has been opened.SerialPortBuilderSerialPortBuilder. setParity(SerialPort.Parity parity)Constructors in com.rm5248.serial with parameters of type SerialPort.Parity Constructor Description SerialPort(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
-