Package org.apache.juneau.http.part
Class BasicPartIterator
java.lang.Object
org.apache.juneau.http.part.BasicPartIterator
- All Implemented Interfaces:
- Iterator<NameValuePair>,- PartIterator
- 
Constructor SummaryConstructorsConstructorDescriptionBasicPartIterator(NameValuePair[] parts, String name, boolean caseInsensitive) Creates a new part iterator.
- 
Method SummaryMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.IteratorforEachRemaining
- 
Constructor Details- 
BasicPartIteratorCreates a new part iterator.- Parameters:
- parts- An array of parts over which to iterate.
- name- The name of the parts over which to iterate, or- null for all.
- caseInsensitive- Use case-insensitive matching for part name.
 
 
- 
- 
Method Details- 
hasNext- Specified by:
- hasNextin interface- Iterator<NameValuePair>
 
- 
next- Specified by:
- nextin interface- Iterator<NameValuePair>
- Throws:
- NoSuchElementException
 
- 
removeNot supported.- Specified by:
- removein interface- Iterator<NameValuePair>
- Throws:
- UnsupportedOperationException
 
 
-