Home | History | Annotate | Download | only in lang

Lines Matching refs:insert

371      *            the index to insert at.
373 * the {@code boolean} value to insert.
380 public StringBuilder insert(int offset, boolean b) {
391 * the index to insert at.
393 * the {@code char} value to insert.
400 public StringBuilder insert(int offset, char c) {
411 * the index to insert at.
413 * the {@code int} value to insert.
420 public StringBuilder insert(int offset, int i) {
431 * the index to insert at.
433 * the {@code long} value to insert.
440 public StringBuilder insert(int offset, long l) {
451 * the index to insert at.
453 * the {@code float} value to insert.
460 public StringBuilder insert(int offset, float f) {
472 * the index to insert at.
474 * the {@code double} value to insert.
481 public StringBuilder insert(int offset, double d) {
492 * the index to insert at.
494 * the {@code Object} to insert.
501 public StringBuilder insert(int offset, Object obj) {
511 * the index to insert at.
513 * the {@code String} to insert.
519 public StringBuilder insert(int offset, String str) {
530 * the index to insert at.
532 * the {@code char[]} to insert.
539 public StringBuilder insert(int offset, char[] ch) {
551 * the index to insert at.
553 * the {@code char[]} to insert.
565 public StringBuilder insert(int offset, char[] str, int strOffset,
578 * the index to insert at.
580 * the {@code CharSequence} to insert.
587 public StringBuilder insert(int offset, CharSequence s) {
601 * the index to insert at.
603 * the {@code CharSequence} to insert.
615 public StringBuilder insert(int offset, CharSequence s, int start, int end) {