Package uk.ac.qmul.eecs.depic.daw
Class WavePeaks
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.ArrayList<java.util.List<Chunk>>
-
- uk.ac.qmul.eecs.depic.daw.WavePeaks
-
public class WavePeaks extends java.util.ArrayList<java.util.List<Chunk>>
a list of list of chunks corresponding to peaks in the sound wave. One list for each possible scaling factor.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description WavePeaks(int maxScaleFactor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description void
add(int scaleFactor, java.util.List<Chunk> element)
boolean
add(java.util.List<Chunk> element)
java.util.List<Chunk>
withScaleFactor(int scaleFactor)
-
Methods inherited from class java.util.ArrayList
addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
-
-
-
-
Method Detail
-
add
public void add(int scaleFactor, java.util.List<Chunk> element)
- Overrides:
add
in classjava.util.ArrayList<java.util.List<Chunk>>
-
add
public boolean add(java.util.List<Chunk> element)
- Overrides:
add
in classjava.util.ArrayList<java.util.List<Chunk>>
-
withScaleFactor
public java.util.List<Chunk> withScaleFactor(int scaleFactor)
-
-