Without going through the char sequence is there any way to reverse String in Java
String
You can use the StringBuilder#reverse() method:
String reverse = new StringBuilder(originalString).reverse().toString();