You don't need it; e.g.
String serial= "/dev/ttyUSB0";
InputStream in= new FileInputStream(serial);
OutputStrea out= new FileOutputStream(serial);
... and read and write your bytes through 'in' and 'out'; that's all.
kind regards,
Jos
ps. you can set the baudrate before you start your Java program (see stty)