scala.collection.jcl

class ArrayList

[source: scala/collection/jcl/ArrayList.scala]

class ArrayList[A](val override underlying : java.util.ArrayList[A])
extends BufferWrapper[A]
Creates a buffer backed by a Java array list.
Author
Sean McDirmid
Additional Constructor Summary
def this : ArrayList[A]
Method Summary
override def clone : ArrayList[A]
This method creates and returns a copy of the receiver object.
Methods inherited from BufferWrapper
elements, remove, add, add, addAll, indexOf, apply, set, rangeImpl, length
Methods inherited from CollectionWrapper
has, size, hasAll, addAll, toString, hashCode, equals
Methods inherited from IterableWrapper
remove, removeAll, retainAll, isEmpty, clear
Methods inherited from Buffer
projection, firstKey, lastKey, compare, remove, replace, update, transform, +, -=
Methods inherited from Collection
++, +=
Methods inherited from Ranged
from, until, range
Methods inherited from MutableIterable
--, -, retainOnly, size0
Methods inherited from Mutable
readOnly, drop, take, slice, reverse
Methods inherited from RandomAccessSeq
partition, patch, ++, toStream, safeIs
Methods inherited from Seq
lengthCompare, concat, last, lastOption, first, firstOption, headOption, isDefinedAt, lastIndexOf, findIndexOf, indexOf, map, flatMap, filter, slice, takeWhile, dropWhile, contains, subseq, toArray, toSeq, equalsWith, startsWith, startsWith, endsWith, indexOf, containsSlice
Methods inherited from Collection
stringPrefix
Methods inherited from Iterable
foreach, forall, exists, find, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, mkString, mkString, mkString, addString, addString, addString, copyToArray, hasDefiniteSize
Methods inherited from PartialFunction
orElse, andThen
Methods inherited from Function1
compose
Methods inherited from AnyRef
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Additional Constructor Details
def this : ArrayList[A]

Method Details
override def clone : ArrayList[A]
This method creates and returns a copy of the receiver object.

The default implementation of the clone method is platform dependent.

Returns
a copy of the receiver object.