Package org.apache.tika.parser.mp3
Class ID3v2Frame.RawTagIterator
- java.lang.Object
-
- org.apache.tika.parser.mp3.ID3v2Frame.RawTagIterator
-
- All Implemented Interfaces:
Iterator<ID3v2Frame.RawTag>
- Enclosing class:
- ID3v2Frame
protected class ID3v2Frame.RawTagIterator extends Object implements Iterator<ID3v2Frame.RawTag>
Iterates over id3v2 raw tags. Create an instance of this that configures the various length and multipliers.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
RawTagIterator(int nameLength, int sizeLength, int sizeMultiplier, int flagLength)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
ID3v2Frame.RawTag
next()
void
remove()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<ID3v2Frame.RawTag>
-
next
public ID3v2Frame.RawTag next()
- Specified by:
next
in interfaceIterator<ID3v2Frame.RawTag>
-
remove
public void remove()
- Specified by:
remove
in interfaceIterator<ID3v2Frame.RawTag>
-
-