RTI Connext Java API
Version 5.1.0
|
An ordered collection of com.rti.dds.dynamicdata.DynamicData elements. More...
Public Member Functions | |
DynamicDataSeq () | |
Construct a new empty com.rti.dds.dynamicdata.DynamicDataSeq. | |
DynamicDataSeq (int initialMaximum) | |
Construct a new empty com.rti.dds.dynamicdata.DynamicDataSeq. | |
DynamicDataSeq (Collection elements) | |
Construct a new com.rti.dds.dynamicdata.DynamicDataSeq containing the same elements as the given collection. | |
Public Member Functions inherited from ArraySequence | |
ArraySequence (Class elementType) | |
ArraySequence (Class elementType, Collection elements) | |
boolean | equals (Object o) |
Public Member Functions inherited from Sequence | |
int | getMaximum () |
Get the current maximum number of elements that can be stored in this sequence. | |
void | setMaximum (int new_max) |
Resize this sequence to a new desired maximum. | |
Class | getElementType () |
An ordered collection of com.rti.dds.dynamicdata.DynamicData elements.
Instantiates com.rti.dds.infrastructure.com.rti.dds.util.Sequence
< com.rti.dds.dynamicdata.DynamicData > .
DynamicDataSeq | ( | ) |
Construct a new empty com.rti.dds.dynamicdata.DynamicDataSeq.
DynamicDataSeq | ( | int | initialMaximum | ) |
Construct a new empty com.rti.dds.dynamicdata.DynamicDataSeq.
The new sequence will have the given maximum. (The maximum of the sequence is equivalent to what, in an ArrayList
, is called the capacity.)
DynamicDataSeq | ( | Collection | elements | ) |
Construct a new com.rti.dds.dynamicdata.DynamicDataSeq containing the same elements as the given collection.