StringBuilder.reverse() has the following syntax.
public StringBuilder reverse()
In the following code shows how to use StringBuilder.reverse() method.
public class Main { public static void main(String[] argv) { StringBuilder sb = new StringBuilder(); sb.append("java2s.com"); sb.reverse(); System.out.println(sb.toString()); } }
The output: