Codota Logo
org.apache.commons.pool.impl
Code IndexAdd Codota to your IDE (free)

How to use org.apache.commons.pool.impl

Best Java code snippets using org.apache.commons.pool.impl (Showing top 20 results out of 909)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: commons-pool/commons-pool

@Override
public boolean add(E o) {
  checkForComod();
  return super.add(o);
}
origin: commons-pool/commons-pool

@Override
public boolean addFirst(E o) {
  checkForComod();
  return super.addFirst(o);
}
origin: commons-pool/commons-pool

@Override
public boolean addAll(Collection<? extends E> c) {
  checkForComod();
  return super.addAll(c);
}
origin: commons-pool/commons-pool

/**
 * Returns the element at the specified position in this list.
 *
 * @param index index of element to return.
 * @return the element at the specified position in this list.
 *
 * @throws IndexOutOfBoundsException if the index is out of range (index
 *         &lt; 0 || index &gt;= size()).
 */
public E get(int index) {
  return getListableAt(index).value();
}
origin: commons-pool/commons-pool

@Override
public E removeFirst() {
  checkForComod();
  return super.removeFirst();
}
origin: commons-pool/commons-pool

@Override
public Iterator<E> iterator() {
  checkForComod();
  return super.iterator();
}
origin: commons-pool/commons-pool

@Override
public boolean addLast(E o) {
  checkForComod();
  return super.addLast(o);
}
origin: commons-pool/commons-pool

@Override
public boolean remove(Object o) {
  checkForComod();
  return super.remove(o);
}
origin: commons-pool/commons-pool

/**
 * Appends the specified element to the end of this list.
 *
 * @param o element to be appended to this list.
 * @return <tt>true</tt>
 */
public boolean add(E o) {
  insertListable(_head.prev(),null,o);
  return true;
}
origin: commons-pool/commons-pool

@Override
public <T> T[] toArray(T a[]) {
  checkForComod();
  return super.toArray(a);
}
origin: commons-pool/commons-pool

@Override
public ListIterator<E> listIterator() {
  checkForComod();
  return super.listIterator();
}
origin: commons-pool/commons-pool

@Override
public E get(int index) {
  checkForComod();
  return super.get(index);
}
origin: commons-pool/commons-pool

@Override
public int hashCode() {
  checkForComod();
  return super.hashCode();
}
origin: commons-pool/commons-pool

/**
 * Inserts the specified element at the beginning of this list.
 * (Equivalent to {@link #add(int,java.lang.Object) <tt>add(0,o)</tt>}).
 *
 * @param o element to be prepended to this list.
 * @return <tt>true</tt>
 */
public boolean addFirst(E o) {
  insertListable(null,_head.next(),o);
  return true;
}
origin: commons-pool/commons-pool

@Override
public boolean equals(Object o) {
  checkForComod();
  return super.equals(o);
}
origin: commons-pool/commons-pool

@Override
public E getLast() {
  checkForComod();
  return super.getLast();
}
origin: commons-pool/commons-pool

@Override
public boolean contains(Object o) {
  checkForComod();
  return super.contains(o);
}
origin: commons-pool/commons-pool

@Override
public List<E> subList(int fromIndex, int toIndex) {
  checkForComod();
  return super.subList(fromIndex,toIndex);
}
origin: commons-pool/commons-pool

@Override
public boolean addAll(int index, Collection<? extends E> c) {
  checkForComod();
  return super.addAll(index,c);
}
origin: commons-pool/commons-pool

/**
 * Inserts the specified element at the end of this list.
 * (Equivalent to {@link #add(java.lang.Object)}).
 *
 * @param o element to be appended to this list.
 * @return <tt>true</tt>
 */
public boolean addLast(E o) {
  insertListable(_head.prev(),null,o);
  return true;
}
org.apache.commons.pool.impl

Most used classes

  • GenericObjectPool
  • GenericKeyedObjectPool
  • GenericObjectPool$Config
  • GenericKeyedObjectPool$Config
    A simple "struct" encapsulating the configuration information for a GenericKeyedObjectPool.
  • GenericKeyedObjectPoolFactory
  • SoftReferenceObjectPool,
  • CursorableLinkedList$Cursor,
  • CursorableLinkedList$Listable,
  • CursorableLinkedList,
  • EvictionTimer,
  • GenericObjectPoolFactory,
  • CursorableLinkedList$ListIter,
  • CursorableSubList,
  • GenericKeyedObjectPool$Evictor,
  • GenericKeyedObjectPool$Latch,
  • GenericKeyedObjectPool$ObjectQueue,
  • GenericKeyedObjectPool$ObjectTimestampPair,
  • GenericObjectPool$Evictor,
  • GenericObjectPool$Latch
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now