Home | History | Annotate | Download | only in lang

Lines Matching refs:insert

427      *            the index at which to insert.
429 * the character to insert.
434 public synchronized StringBuffer insert(int index, char ch) {
444 * the index at which to insert.
446 * the boolean to insert.
451 public StringBuffer insert(int index, boolean b) {
452 return insert(index, b ? "true" : "false"); //$NON-NLS-1$ //$NON-NLS-2$
460 * the index at which to insert.
462 * the integer to insert.
467 public StringBuffer insert(int index, int i) {
468 return insert(index, Integer.toString(i));
476 * the index at which to insert.
478 * the long to insert.
483 public StringBuffer insert(int index, long l) {
484 return insert(index, Long.toString(l));
492 * the index at which to insert.
494 * the double to insert.
499 public StringBuffer insert(int index, double d) {
500 return insert(index, Double.toString(d));
508 * the index at which to insert.
510 * the float to insert.
515 public StringBuffer insert(int index, float f) {
516 return insert(index, Float.toString(f));
528 * the index at which to insert.
530 * the object to insert (may be null).
535 public StringBuffer insert(int index, Object obj) {
536 return insert(index, obj == null ? "null" : obj.toString()); //$NON-NLS-1$
546 * the index at which to insert.
548 * the string to insert (may be null).
553 public synchronized StringBuffer insert(int index, String string) {
562 * the index at which to insert.
564 * the character array to insert.
571 public synchronized StringBuffer insert(int index, char[] chars) {
581 * the index at which to insert.
583 * the character array to insert.
596 public synchronized StringBuffer insert(int index, char chars[], int start,
610 * The index at which to insert.
612 * The char sequence to insert.
618 public synchronized StringBuffer insert(int index, CharSequence s) {
631 * The index at which to insert.
633 * The char sequence to insert.
646 public synchronized StringBuffer insert(int index, CharSequence s,