org.apache.qpid.jms
Interface ListMessage

All Superinterfaces:
javax.jms.Message, javax.jms.StreamMessage

public interface ListMessage
extends javax.jms.StreamMessage


Field Summary
 
Fields inherited from interface javax.jms.Message
DEFAULT_DELIVERY_MODE, DEFAULT_PRIORITY, DEFAULT_TIME_TO_LIVE
 
Method Summary
 void add(int index, java.lang.Object e)
           
 boolean add(java.lang.Object e)
           
 java.util.List<java.lang.Object> asList()
           
 boolean contains(java.lang.Object e)
           
 java.lang.Object get(int index)
           
 int indexOf(java.lang.Object e)
           
 java.util.Iterator<java.lang.Object> iterator()
           
 java.lang.Object remove(int index)
           
 boolean remove(java.lang.Object e)
           
 java.lang.Object set(int index, java.lang.Object e)
           
 void setList(java.util.List<java.lang.Object> l)
           
 int size()
           
 java.lang.Object[] toArray()
           
 
Methods inherited from interface javax.jms.StreamMessage
readBoolean, readByte, readBytes, readChar, readDouble, readFloat, readInt, readLong, readObject, readShort, readString, reset, writeBoolean, writeByte, writeBytes, writeBytes, writeChar, writeDouble, writeFloat, writeInt, writeLong, writeObject, writeShort, writeString
 
Methods inherited from interface javax.jms.Message
acknowledge, clearBody, clearProperties, getBooleanProperty, getByteProperty, getDoubleProperty, getFloatProperty, getIntProperty, getJMSCorrelationID, getJMSCorrelationIDAsBytes, getJMSDeliveryMode, getJMSDestination, getJMSExpiration, getJMSMessageID, getJMSPriority, getJMSRedelivered, getJMSReplyTo, getJMSTimestamp, getJMSType, getLongProperty, getObjectProperty, getPropertyNames, getShortProperty, getStringProperty, propertyExists, setBooleanProperty, setByteProperty, setDoubleProperty, setFloatProperty, setIntProperty, setJMSCorrelationID, setJMSCorrelationIDAsBytes, setJMSDeliveryMode, setJMSDestination, setJMSExpiration, setJMSMessageID, setJMSPriority, setJMSRedelivered, setJMSReplyTo, setJMSTimestamp, setJMSType, setLongProperty, setObjectProperty, setShortProperty, setStringProperty
 

Method Detail

add

boolean add(java.lang.Object e)
            throws javax.jms.JMSException
Throws:
javax.jms.JMSException

add

void add(int index,
         java.lang.Object e)
         throws javax.jms.JMSException
Throws:
javax.jms.JMSException

contains

boolean contains(java.lang.Object e)
                 throws javax.jms.JMSException
Throws:
javax.jms.JMSException

get

java.lang.Object get(int index)
                     throws javax.jms.JMSException
Throws:
javax.jms.JMSException

indexOf

int indexOf(java.lang.Object e)
            throws javax.jms.JMSException
Throws:
javax.jms.JMSException

iterator

java.util.Iterator<java.lang.Object> iterator()
                                              throws javax.jms.JMSException
Throws:
javax.jms.JMSException

remove

java.lang.Object remove(int index)
                        throws javax.jms.JMSException
Throws:
javax.jms.JMSException

remove

boolean remove(java.lang.Object e)
               throws javax.jms.JMSException
Throws:
javax.jms.JMSException

set

java.lang.Object set(int index,
                     java.lang.Object e)
                     throws javax.jms.JMSException
Throws:
javax.jms.JMSException

size

int size()
         throws javax.jms.JMSException
Throws:
javax.jms.JMSException

toArray

java.lang.Object[] toArray()
                           throws javax.jms.JMSException
Throws:
javax.jms.JMSException

asList

java.util.List<java.lang.Object> asList()
                                        throws javax.jms.JMSException
Throws:
javax.jms.JMSException

setList

void setList(java.util.List<java.lang.Object> l)
             throws javax.jms.JMSException
Throws:
javax.jms.JMSException