Você não pode recuperar isso como string (varchar), devido às limitações de varchar lenght (4000bytes). Selecione-o como CLOB:
String query = "SELECT TBL.XMLTYPECOLUMN.GETCLOBVAL() FROM TABLE TBL";
rs = stmt.executeQuery(query);
xmlClob = (Clob) rs.getClob(1);
http://kodehelp.com/how- to-read-xmltype-column-from-database-using-jdbc/