/* * (non-Javadoc) * @see java.lang.Appendable#append(java.lang.CharSequence) */ public Appendable append(StringValue csq) { append(csq, 0, csq.length()); return this; }
/* * (non-Javadoc) * @see java.lang.Appendable#append(java.lang.CharSequence) */ @Override public Appendable append(CharSequence csq) { append(csq, 0, csq.length()); return this; }