Package org.apache.cxf.attachment
Class LazyAttachmentCollection
- java.lang.Object
-
- org.apache.cxf.attachment.LazyAttachmentCollection
-
- All Implemented Interfaces:
Iterable<Attachment>
,Collection<Attachment>
public class LazyAttachmentCollection extends Object implements Collection<Attachment>
-
-
Constructor Summary
Constructors Constructor Description LazyAttachmentCollection(AttachmentDeserializer deserializer, int maxAttachmentCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(Attachment arg0)
boolean
addAll(Collection<? extends Attachment> arg0)
void
clear()
boolean
contains(Object arg0)
boolean
containsAll(Collection<?> arg0)
Map<String,javax.activation.DataHandler>
createDataHandlerMap()
List<Attachment>
getLoadedAttachments()
boolean
hasNext()
boolean
hasNext(boolean shouldLoadNew)
Check for more attachments by attempting to deserialize the next attachment.boolean
isEmpty()
Iterator<Attachment>
iterator()
boolean
remove(Object arg0)
boolean
removeAll(Collection<?> arg0)
boolean
retainAll(Collection<?> arg0)
int
size()
Object[]
toArray()
<T> T[]
toArray(T[] arg0)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Constructor Detail
-
LazyAttachmentCollection
public LazyAttachmentCollection(AttachmentDeserializer deserializer, int maxAttachmentCount)
-
-
Method Detail
-
getLoadedAttachments
public List<Attachment> getLoadedAttachments()
-
hasNext
public boolean hasNext(boolean shouldLoadNew) throws IOException
Check for more attachments by attempting to deserialize the next attachment.- Parameters:
shouldLoadNew
- if false, the "loaded attachments" List will not be changed.- Returns:
- there is more attachment or not
- Throws:
IOException
-
hasNext
public boolean hasNext() throws IOException
- Throws:
IOException
-
iterator
public Iterator<Attachment> iterator()
- Specified by:
iterator
in interfaceCollection<Attachment>
- Specified by:
iterator
in interfaceIterable<Attachment>
-
size
public int size()
- Specified by:
size
in interfaceCollection<Attachment>
-
add
public boolean add(Attachment arg0)
- Specified by:
add
in interfaceCollection<Attachment>
-
addAll
public boolean addAll(Collection<? extends Attachment> arg0)
- Specified by:
addAll
in interfaceCollection<Attachment>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<Attachment>
-
contains
public boolean contains(Object arg0)
- Specified by:
contains
in interfaceCollection<Attachment>
-
containsAll
public boolean containsAll(Collection<?> arg0)
- Specified by:
containsAll
in interfaceCollection<Attachment>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceCollection<Attachment>
-
remove
public boolean remove(Object arg0)
- Specified by:
remove
in interfaceCollection<Attachment>
-
removeAll
public boolean removeAll(Collection<?> arg0)
- Specified by:
removeAll
in interfaceCollection<Attachment>
-
retainAll
public boolean retainAll(Collection<?> arg0)
- Specified by:
retainAll
in interfaceCollection<Attachment>
-
toArray
public Object[] toArray()
- Specified by:
toArray
in interfaceCollection<Attachment>
-
toArray
public <T> T[] toArray(T[] arg0)
- Specified by:
toArray
in interfaceCollection<Attachment>
-
-