C D E F G I N R S T V

S

SerialChangeListener - Interface in com.rm5248.serial
This interface lets the user do something when the serial line state changes.
SerialLineState - Class in com.rm5248.serial
This class represents the current state of the lines on the serial port.
SerialLineState() - Constructor for class com.rm5248.serial.SerialLineState
 
SerialPort - Class in com.rm5248.serial
A SerialPort object represents a SerialPort object on the system.
SerialPort(String) - Constructor for class com.rm5248.serial.SerialPort
Open the specified port, 9600 baud, 8 data bits, 1 stop bit, no parity, no flow control
SerialPort(String, boolean) - Constructor for class com.rm5248.serial.SerialPort
Open up a serial port, but allow the user to keep the current settings of the serial port.
SerialPort(String, SerialPort.BaudRate) - Constructor for class com.rm5248.serial.SerialPort
Open the specified port, no flow control
SerialPort(String, SerialPort.BaudRate, SerialPort.DataBits) - Constructor for class com.rm5248.serial.SerialPort
Open the specified port, no flow control
SerialPort(String, SerialPort.BaudRate, SerialPort.DataBits, SerialPort.StopBits) - Constructor for class com.rm5248.serial.SerialPort
Open the specified port, no parity or flow control
SerialPort(String, SerialPort.BaudRate, SerialPort.DataBits, SerialPort.StopBits, SerialPort.Parity) - Constructor for class com.rm5248.serial.SerialPort
Open the specified port, no flow control
SerialPort(String, SerialPort.BaudRate, SerialPort.DataBits, SerialPort.StopBits, SerialPort.Parity, SerialPort.FlowControl) - Constructor for class com.rm5248.serial.SerialPort
Open the specified port, defining all options
SerialPort.BaudRate - Enum in com.rm5248.serial
Represents the BaudRate that the SerialPort uses.
SerialPort.DataBits - Enum in com.rm5248.serial
Represents the number of bits that the serial port uses.
SerialPort.FlowControl - Enum in com.rm5248.serial
The Flow control scheme for the data, typically None.
SerialPort.Parity - Enum in com.rm5248.serial
The parity bit for the data.
SerialPort.StopBits - Enum in com.rm5248.serial
The number of stop bits for data.
serialStateChanged(SerialLineState) - Method in interface com.rm5248.serial.SerialChangeListener
Fired when the state on the serial line changes.
setBaudRate(SerialPort.BaudRate) - Method in class com.rm5248.serial.SerialPort
Set the Baud Rate for this port.
setDataSize(SerialPort.DataBits) - Method in class com.rm5248.serial.SerialPort
Set the data bits size, after the port has been opened.
setFlowControl(SerialPort.FlowControl) - Method in class com.rm5248.serial.SerialPort
Set the flow control for the serial port
setParity(SerialPort.Parity) - Method in class com.rm5248.serial.SerialPort
Set the parity of the serial port, after the port has been opened.
setSerialChangeListener(SerialChangeListener) - Method in class com.rm5248.serial.SerialPort
Set the listener which will get events when there is activity on the serial port.
setSerialLineState(SerialLineState) - Method in class com.rm5248.serial.SerialPort
Set the serial line state to the parameters given.
setStopBits(SerialPort.StopBits) - Method in class com.rm5248.serial.SerialPort
Set the stop bits of the serial port, after the port has been opened.

C D E F G I N R S T V