Tabnine Logo
StringBuilder.append0
Code IndexAdd Tabnine to your IDE (free)

How to use
append0
method
in
java.lang.StringBuilder

Best Java code snippets using java.lang.StringBuilder.append0 (Showing top 20 results out of 315)

origin: robovm/robovm

/**
 * Appends the contents of the specified string. If the string is {@code
 * null}, then the string {@code "null"} is appended.
 *
 * @param str
 *            the string to append.
 * @return this builder.
 */
public StringBuilder append(String str) {
  append0(str);
  return this;
}
origin: robovm/robovm

/**
 * Appends the string representation of the specified {@code boolean} value.
 * The {@code boolean} value is converted to a String according to the rule
 * defined by {@link String#valueOf(boolean)}.
 *
 * @param b
 *            the {@code boolean} value to append.
 * @return this builder.
 * @see String#valueOf(boolean)
 */
public StringBuilder append(boolean b) {
  append0(b ? "true" : "false");
  return this;
}
origin: robovm/robovm

/**
 * Appends the string representation of the specified {@code char} value.
 * The {@code char} value is converted to a string according to the rule
 * defined by {@link String#valueOf(char)}.
 *
 * @param c
 *            the {@code char} value to append.
 * @return this builder.
 * @see String#valueOf(char)
 */
public StringBuilder append(char c) {
  append0(c);
  return this;
}
origin: robovm/robovm

/**
 * Appends the string representation of the specified {@code char[]}.
 * The {@code char[]} is converted to a string according to the rule
 * defined by {@link String#valueOf(char[])}.
 *
 * @param chars
 *            the {@code char[]} to append..
 * @return this builder.
 * @see String#valueOf(char[])
 */
public StringBuilder append(char[] chars) {
  append0(chars);
  return this;
}
origin: robovm/robovm

/**
 * Appends the string representation of the specified subset of the {@code
 * char[]}. The {@code char[]} value is converted to a String according to
 * the rule defined by {@link String#valueOf(char[],int,int)}.
 *
 * @param str
 *            the {@code char[]} to append.
 * @param offset
 *            the inclusive offset index.
 * @param len
 *            the number of characters.
 * @return this builder.
 * @throws ArrayIndexOutOfBoundsException
 *             if {@code offset} and {@code len} do not specify a valid
 *             subsequence.
 * @see String#valueOf(char[],int,int)
 */
public StringBuilder append(char[] str, int offset, int len) {
  append0(str, offset, len);
  return this;
}
origin: robovm/robovm

/**
 * Appends the string representation of the specified subsequence of the
 * {@code CharSequence}. If the {@code CharSequence} is {@code null}, then
 * the string {@code "null"} is used to extract the subsequence from.
 *
 * @param csq
 *            the {@code CharSequence} to append.
 * @param start
 *            the beginning index.
 * @param end
 *            the ending index.
 * @return this builder.
 * @throws IndexOutOfBoundsException
 *             if {@code start} or {@code end} are negative, {@code start}
 *             is greater than {@code end} or {@code end} is greater than
 *             the length of {@code csq}.
 */
public StringBuilder append(CharSequence csq, int start, int end) {
  append0(csq, start, end);
  return this;
}
origin: robovm/robovm

/**
 * Appends the encoded Unicode code point. The code point is converted to a
 * {@code char[]} as defined by {@link Character#toChars(int)}.
 *
 * @param codePoint
 *            the Unicode code point to encode and append.
 * @return this builder.
 * @see Character#toChars(int)
 */
public StringBuilder appendCodePoint(int codePoint) {
  append0(Character.toChars(codePoint));
  return this;
}
origin: robovm/robovm

/**
 * Appends the string representation of the specified {@code CharSequence}.
 * If the {@code CharSequence} is {@code null}, then the string {@code
 * "null"} is appended.
 *
 * @param csq
 *            the {@code CharSequence} to append.
 * @return this builder.
 */
public StringBuilder append(CharSequence csq) {
  if (csq == null) {
    appendNull();
  } else {
    append0(csq, 0, csq.length());
  }
  return this;
}
origin: robovm/robovm

/**
 * Appends the string representation of the specified {@code Object}.
 * The {@code Object} value is converted to a string according to the rule
 * defined by {@link String#valueOf(Object)}.
 *
 * @param obj
 *            the {@code Object} to append.
 * @return this builder.
 * @see String#valueOf(Object)
 */
public StringBuilder append(Object obj) {
  if (obj == null) {
    appendNull();
  } else {
    append0(obj.toString());
  }
  return this;
}
origin: robovm/robovm

/**
 * Appends the contents of the specified {@code StringBuffer}. If the
 * StringBuffer is {@code null}, then the string {@code "null"} is
 * appended.
 *
 * @param sb
 *            the {@code StringBuffer} to append.
 * @return this builder.
 */
public StringBuilder append(StringBuffer sb) {
  if (sb == null) {
    appendNull();
  } else {
    append0(sb.getValue(), 0, sb.length());
  }
  return this;
}
origin: MobiVM/robovm

/**
 * Appends the contents of the specified string. If the string is {@code
 * null}, then the string {@code "null"} is appended.
 *
 * @param str
 *            the string to append.
 * @return this builder.
 */
public StringBuilder append(String str) {
  append0(str);
  return this;
}
origin: ibinti/bugvm

/**
 * Appends the contents of the specified string. If the string is {@code
 * null}, then the string {@code "null"} is appended.
 *
 * @param str
 *            the string to append.
 * @return this builder.
 */
public StringBuilder append(String str) {
  append0(str);
  return this;
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Appends the contents of the specified string. If the string is {@code
 * null}, then the string {@code "null"} is appended.
 *
 * @param str
 *            the string to append.
 * @return this builder.
 */
public StringBuilder append(String str) {
  append0(str);
  return this;
}
origin: com.gluonhq/robovm-rt

/**
 * Appends the contents of the specified string. If the string is {@code
 * null}, then the string {@code "null"} is appended.
 *
 * @param str
 *            the string to append.
 * @return this builder.
 */
public StringBuilder append(String str) {
  append0(str);
  return this;
}
origin: com.bugvm/bugvm-rt

/**
 * Appends the contents of the specified string. If the string is {@code
 * null}, then the string {@code "null"} is appended.
 *
 * @param str
 *            the string to append.
 * @return this builder.
 */
public StringBuilder append(String str) {
  append0(str);
  return this;
}
origin: FlexoVM/flexovm

/**
 * Appends the contents of the specified string. If the string is {@code
 * null}, then the string {@code "null"} is appended.
 *
 * @param str
 *            the string to append.
 * @return this builder.
 */
public StringBuilder append(String str) {
  append0(str);
  return this;
}
origin: MobiVM/robovm

/**
 * Appends the string representation of the specified {@code char[]}.
 * The {@code char[]} is converted to a string according to the rule
 * defined by {@link String#valueOf(char[])}.
 *
 * @param chars
 *            the {@code char[]} to append..
 * @return this builder.
 * @see String#valueOf(char[])
 */
public StringBuilder append(char[] chars) {
  append0(chars);
  return this;
}
origin: MobiVM/robovm

/**
 * Appends the encoded Unicode code point. The code point is converted to a
 * {@code char[]} as defined by {@link Character#toChars(int)}.
 *
 * @param codePoint
 *            the Unicode code point to encode and append.
 * @return this builder.
 * @see Character#toChars(int)
 */
public StringBuilder appendCodePoint(int codePoint) {
  append0(Character.toChars(codePoint));
  return this;
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Appends the encoded Unicode code point. The code point is converted to a
 * {@code char[]} as defined by {@link Character#toChars(int)}.
 *
 * @param codePoint
 *            the Unicode code point to encode and append.
 * @return this builder.
 * @see Character#toChars(int)
 */
public StringBuilder appendCodePoint(int codePoint) {
  append0(Character.toChars(codePoint));
  return this;
}
origin: com.bugvm/bugvm-rt

/**
 * Appends the encoded Unicode code point. The code point is converted to a
 * {@code char[]} as defined by {@link Character#toChars(int)}.
 *
 * @param codePoint
 *            the Unicode code point to encode and append.
 * @return this builder.
 * @see Character#toChars(int)
 */
public StringBuilder appendCodePoint(int codePoint) {
  append0(Character.toChars(codePoint));
  return this;
}
java.langStringBuilderappend0

Popular methods of StringBuilder

  • append
  • toString
  • <init>
    Constructs a string builder initialized to the contents of the specified string. The initial capacit
  • length
  • setLength
  • charAt
  • deleteCharAt
  • insert
  • substring
  • delete
  • replace
  • setCharAt
  • replace,
  • setCharAt,
  • indexOf,
  • lastIndexOf,
  • reverse,
  • appendCodePoint,
  • getChars,
  • subSequence,
  • ensureCapacity,
  • trimToSize

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • startActivity (Activity)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Notification (javax.management)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now