I'm invoking
sb.append(i+"\n");
where
StringBuilder sb= new StringBuilder();
int i.
What is i+"\n" cast to here-- a String, a StringBuffer, CharSequence, character array, ...?
StringBuilder has append() each taking a param which is an Object, a String, a StringBuilder (this one is a private method), a StringBuffer, a CharSequence parameter, character array, .. among others. I'm trying to find out which of these being invoked-- looking to avoid the call on String param for fast processing.
Thanks in advance.