congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
RecyclingArrayList.remove
Code IndexAdd Tabnine to your IDE (free)

How to use
remove
method
in
us.ihmc.robotics.lists.RecyclingArrayList

Best Java code snippets using us.ihmc.robotics.lists.RecyclingArrayList.remove (Showing top 2 results out of 315)

origin: us.ihmc/IHMCHumanoidRobotics

public void removeFootstep(int footstepIndex)
{
 footsteps.remove(footstepIndex);
}
origin: us.ihmc/IHMCRoboticsToolkit

/**
* Removes the first occurrence of the specified element from this list,
* if it is present.  If the list does not contain the element, it is
* unchanged.
*
* @param object element to be removed from this list, if present
* @return <tt>true</tt> if this list contained the specified element
*/
@Override
public boolean remove(Object object)
{
 int index = indexOf(object);
 if (index == -1)
   return false;
 else
 {
   remove(index);
   return true;
 }
}
us.ihmc.robotics.listsRecyclingArrayListremove

Javadoc

Removes the element at the specified position in this list. Shifts any subsequent elements to the left (subtracts one from their indices).

Popular methods of RecyclingArrayList

  • get
    Returns the element at the specified position in this list.
  • add
    Unsupported operation.
  • clear
    Sets the size of the list to 0, but does not change its capacity. This method is meant to recycle a
  • size
    Returns the number of elements in this list.
  • <init>
  • isEmpty
    Returns true if this list contains no elements.
  • getAndGrowIfNeeded
    Returns the element at the specified position in this list. The list will grow if the given index is
  • getLast
    Returns the last element of this list. If the list is empty, it returns null.
  • checkWithMaxCapacity
  • ensureCapacity
  • fillElementDataIfNeeded
  • indexOf
    Returns the index of the first occurrence of the specified element in this list, or -1 if this list
  • fillElementDataIfNeeded,
  • indexOf,
  • positiveIndexCheck,
  • rangeCheck,
  • rangeCheckForInsert,
  • toArray,
  • unsafeFastSwap,
  • unsafeGet,
  • unsafeGrowByN

Popular in Java

  • Making http post requests using okhttp
  • getResourceAsStream (ClassLoader)
  • compareTo (BigDecimal)
  • setRequestProperty (URLConnection)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Sublime Text for Python
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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