RTI Connext Java API  Version 6.1.2

Instantiates com.rti.dds.infrastructure.com.rti.dds.util.Sequence < com.rti.dds.infrastructure.int > More...

Inheritance diagram for IntSeq:
AbstractPrimitiveSequence AbstractSequence Sequence Copyable Sequence

Public Member Functions

 IntSeq ()
 Constructs an empty sequence of integers with an initial maximum of zero. More...
 
 IntSeq (int initialMaximum)
 Constructs an empty sequence of integers with the given initial maximum. More...
 
 IntSeq (int[] ints)
 Constructs a new sequence containing the given integers. More...
 
boolean addAllInt (int[] elements, int offset, int length)
 Append length elements from the given array to this sequence, starting at index offset in that array. More...
 
boolean addAllInt (int[] elements)
 
void addInt (int element)
 Append the element to the end of the sequence. More...
 
void addInt (int index, int element)
 Shift all elements in the sequence starting from the given index and add the element to the given index. More...
 
int getInt (int index)
 Returns the integer at the given index. More...
 
int setInt (int index, int element)
 Set the new integer at the given index and return the old integer. More...
 
void setInt (int dstIndex, int[] elements, int srcIndex, int length)
 Copy a portion of the given array into this sequence. More...
 
int [] toArrayInt (int[] array)
 Return an array containing copy of the contents of this sequence. More...
 
int getMaximum ()
 Get the current maximum number of elements that can be stored in this sequence. More...
 
Object get (int index)
 A wrapper for getInt(int) that returns a java.lang.Integer. More...
 
Object set (int index, Object element)
 A wrapper for setInt(). More...
 
void add (int index, Object element)
 A wrapper for addInt(int, int). More...
 
- Public Member Functions inherited from AbstractPrimitiveSequence
final Class getElementType ()
 
void loan (Object buffer, int new_length)
 Loan a contiguous buffer to this sequence. More...
 
void unloan ()
 Return the loaned buffer in the sequence and set the maximum to 0. More...
 
final boolean hasOwnership ()
 Return the value of the owned flag. More...
 
final void clear ()
 
final void setSize (int newSize)
 
final int size ()
 
final Object copy_from (Object src)
 
- Public Member Functions inherited from AbstractSequence
void setMaximum (int new_max)
 Resize this sequence to a new desired maximum. More...
 
Class getElementType ()
 
void add (int index, Object element)
 Inserts the specified element at the specified position in this sequence. More...
 
boolean add (Object element)
 Appends the specified element to the end of this sequence. More...
 
final Object remove (int index)
 Remove the element at the given index by shifting all subsequent elements "left" by one. More...
 

Detailed Description

Instantiates com.rti.dds.infrastructure.com.rti.dds.util.Sequence < com.rti.dds.infrastructure.int >

Instantiates:
<<generic>> com.rti.dds.infrastructure.com.rti.dds.util.Sequence
See also
com.rti.dds.infrastructure.int
com.rti.dds.infrastructure.com.rti.dds.util.Sequence

Constructor & Destructor Documentation

◆ IntSeq() [1/3]

IntSeq ( )

Constructs an empty sequence of integers with an initial maximum of zero.

◆ IntSeq() [2/3]

IntSeq ( int  initialMaximum)

Constructs an empty sequence of integers with the given initial maximum.

◆ IntSeq() [3/3]

IntSeq ( int []  ints)

Constructs a new sequence containing the given integers.

Parameters
intsthe initial contents of this sequence
Exceptions
NullPointerExceptionif the input array is null

References IntSeq.addAllInt().

Member Function Documentation

◆ addAllInt() [1/2]

boolean addAllInt ( int []  elements,
int  offset,
int  length 
)

Append length elements from the given array to this sequence, starting at index offset in that array.

Exceptions
NullPointerExceptionif the given array is null.

Referenced by IntSeq.addAllInt(), TypeCode.cdr_serialized_sample_key_max_size(), and IntSeq.IntSeq().

◆ addAllInt() [2/2]

boolean addAllInt ( int []  elements)
Exceptions
NullPointerExceptionif the given array is null

References IntSeq.addAllInt().

◆ addInt() [1/2]

void addInt ( int  element)

Append the element to the end of the sequence.

Referenced by IntSeq.add().

◆ addInt() [2/2]

void addInt ( int  index,
int  element 
)

Shift all elements in the sequence starting from the given index and add the element to the given index.

◆ getInt()

int getInt ( int  index)

Returns the integer at the given index.

Exceptions
IndexOutOfBoundsExceptionif the index is out of bounds.

Referenced by IntSeq.get().

◆ setInt() [1/2]

int setInt ( int  index,
int  element 
)

Set the new integer at the given index and return the old integer.

Exceptions
IndexOutOfBoundsExceptionif the index is out of bounds.

Referenced by IntSeq.set().

◆ setInt() [2/2]

void setInt ( int  dstIndex,
int []  elements,
int  srcIndex,
int  length 
)

Copy a portion of the given array into this sequence.

Parameters
dstIndexthe index at which to start copying into this sequence.
elementsan array of primitive elements.
srcIndexthe index at which to start copying from the given array.
lengththe number of elements to copy.
Exceptions
IndexOutOfBoundsExceptionif copying would cause access of data outside array bounds.

◆ toArrayInt()

int [] toArrayInt ( int []  array)

Return an array containing copy of the contents of this sequence.

Parameters
arrayThe array into which this sequence should be copied. It may be null. If it is, or if array length is too small, the array will be ignored, and a new array of the necessary length will be created and copied into instead.
Returns
A non-null array containing a copy of the contents of this sequence.

◆ getMaximum()

int getMaximum ( )

Get the current maximum number of elements that can be stored in this sequence.

The maximum of the sequence represents the maximum number of elements that the underlying buffer can hold. It does not represent the current number of elements.

The maximum is a non-negative number. It is initialized when the sequence is first created.

The maximum can be changed implicitly by adding an element to the sequence with add(), or explicitly by calling com.rti.dds.infrastructure.com.rti.dds.util.Sequence.Sequence.setMaximum.

Returns
the current maximum of the sequence.
See also
com.rti.dds.infrastructure.com.rti.dds.util.Sequence.Sequence.size()

Implements Sequence.

Referenced by DynamicData.get_int_seq(), and DynamicData.set_int_seq().

◆ get()

Object get ( int  index)

A wrapper for getInt(int) that returns a java.lang.Integer.

See also
java.util.List::get(int)

References IntSeq.getInt(), and AbstractPrimitiveSequence.size().

◆ set()

Object set ( int  index,
Object  element 
)

A wrapper for setInt().

Exceptions
ClassCastExceptionif the element is not of type Integer.
See also
java.util.List::set(int, java.lang.Object)

References IntSeq.setInt().

◆ add()

void add ( int  index,
Object  element 
)

A wrapper for addInt(int, int).

Exceptions
ClassCastExceptionif the element is not of type Integer.
See also
java.util.List::add(int, java.lang.Object)

References IntSeq.addInt().