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

How to use
delete0
method
in
java.lang.StringBuilder

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

origin: robovm/robovm

/**
 * Deletes a sequence of characters specified by {@code start} and {@code
 * end}. Shifts any remaining characters to the left.
 *
 * @param start
 *            the inclusive start index.
 * @param end
 *            the exclusive end index.
 * @return this builder.
 * @throws StringIndexOutOfBoundsException
 *             if {@code start} is less than zero, greater than the current
 *             length or greater than {@code end}.
 */
public StringBuilder delete(int start, int end) {
  delete0(start, end);
  return this;
}
origin: ibinti/bugvm

/**
 * Deletes a sequence of characters specified by {@code start} and {@code
 * end}. Shifts any remaining characters to the left.
 *
 * @param start
 *            the inclusive start index.
 * @param end
 *            the exclusive end index.
 * @return this builder.
 * @throws StringIndexOutOfBoundsException
 *             if {@code start} is less than zero, greater than the current
 *             length or greater than {@code end}.
 */
public StringBuilder delete(int start, int end) {
  delete0(start, end);
  return this;
}
origin: MobiVM/robovm

/**
 * Deletes a sequence of characters specified by {@code start} and {@code
 * end}. Shifts any remaining characters to the left.
 *
 * @param start
 *            the inclusive start index.
 * @param end
 *            the exclusive end index.
 * @return this builder.
 * @throws StringIndexOutOfBoundsException
 *             if {@code start} is less than zero, greater than the current
 *             length or greater than {@code end}.
 */
public StringBuilder delete(int start, int end) {
  delete0(start, end);
  return this;
}
origin: com.mobidevelop.robovm/robovm-rt

/**
 * Deletes a sequence of characters specified by {@code start} and {@code
 * end}. Shifts any remaining characters to the left.
 *
 * @param start
 *            the inclusive start index.
 * @param end
 *            the exclusive end index.
 * @return this builder.
 * @throws StringIndexOutOfBoundsException
 *             if {@code start} is less than zero, greater than the current
 *             length or greater than {@code end}.
 */
public StringBuilder delete(int start, int end) {
  delete0(start, end);
  return this;
}
origin: com.bugvm/bugvm-rt

/**
 * Deletes a sequence of characters specified by {@code start} and {@code
 * end}. Shifts any remaining characters to the left.
 *
 * @param start
 *            the inclusive start index.
 * @param end
 *            the exclusive end index.
 * @return this builder.
 * @throws StringIndexOutOfBoundsException
 *             if {@code start} is less than zero, greater than the current
 *             length or greater than {@code end}.
 */
public StringBuilder delete(int start, int end) {
  delete0(start, end);
  return this;
}
origin: com.gluonhq/robovm-rt

/**
 * Deletes a sequence of characters specified by {@code start} and {@code
 * end}. Shifts any remaining characters to the left.
 *
 * @param start
 *            the inclusive start index.
 * @param end
 *            the exclusive end index.
 * @return this builder.
 * @throws StringIndexOutOfBoundsException
 *             if {@code start} is less than zero, greater than the current
 *             length or greater than {@code end}.
 */
public StringBuilder delete(int start, int end) {
  delete0(start, end);
  return this;
}
origin: FlexoVM/flexovm

/**
 * Deletes a sequence of characters specified by {@code start} and {@code
 * end}. Shifts any remaining characters to the left.
 *
 * @param start
 *            the inclusive start index.
 * @param end
 *            the exclusive end index.
 * @return this builder.
 * @throws StringIndexOutOfBoundsException
 *             if {@code start} is less than zero, greater than the current
 *             length or greater than {@code end}.
 */
public StringBuilder delete(int start, int end) {
  delete0(start, end);
  return this;
}
java.langStringBuilderdelete0

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

  • Reading from database using SQL prepared statement
  • runOnUiThread (Activity)
  • findViewById (Activity)
  • scheduleAtFixedRate (Timer)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • From CI to AI: The AI layer in your organization
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