Package org.apache.poi.hemf.usermodel
Class HemfEmbeddedIterator
- java.lang.Object
-
- org.apache.poi.hemf.usermodel.HemfEmbeddedIterator
-
- All Implemented Interfaces:
Iterator<HwmfEmbedded>
public class HemfEmbeddedIterator extends Object implements Iterator<HwmfEmbedded>
-
-
Constructor Summary
Constructors Constructor Description HemfEmbeddedIterator(Iterator<HemfRecord> recordIterator)HemfEmbeddedIterator(HemfPicture emf)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static intgetMaxRecordLength()booleanhasNext()HwmfEmbeddednext()static voidsetMaxRecordLength(int length)-
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, remove
-
-
-
-
Constructor Detail
-
HemfEmbeddedIterator
public HemfEmbeddedIterator(HemfPicture emf)
-
HemfEmbeddedIterator
public HemfEmbeddedIterator(Iterator<HemfRecord> recordIterator)
-
-
Method Detail
-
setMaxRecordLength
public static void setMaxRecordLength(int length)
- Parameters:
length- the max record length allowed for HemfEmbeddedIterator
-
getMaxRecordLength
public static int getMaxRecordLength()
- Returns:
- the max record length allowed for HemfEmbeddedIterator
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<HwmfEmbedded>
-
next
public HwmfEmbedded next()
- Specified by:
nextin interfaceIterator<HwmfEmbedded>
-
-