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 protectedRawTagIterator(int nameLength, int sizeLength, int sizeMultiplier, int flagLength)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()ID3v2Frame.RawTagnext()voidremove()-
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:
hasNextin interfaceIterator<ID3v2Frame.RawTag>
-
next
public ID3v2Frame.RawTag next()
- Specified by:
nextin interfaceIterator<ID3v2Frame.RawTag>
-
remove
public void remove()
- Specified by:
removein interfaceIterator<ID3v2Frame.RawTag>
-
-