RTI Connext Java API  Version 5.0.0
BooleanSeq Class Reference

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

Inheritance diagram for BooleanSeq:
AbstractPrimitiveSequence AbstractSequence Sequence Copyable Sequence

Public Member Functions

 BooleanSeq ()
 Constructs an empty sequence of booleans with an initial maximum of zero.
 
 BooleanSeq (int initialMaximum)
 Constructs an empty sequence of booleans with the given initial maximum.
 
 BooleanSeq (boolean[] booleans)
 Constructs a new sequence containing the given booleans.
 
boolean addAllBoolean (boolean[] elements, int offset, int length)
 Append length elements from the given array to this sequence, starting at index offset in that array.
 
boolean addAllBoolean (boolean[] elements)
 
void addBoolean (boolean element)
 Append the element to the end of the sequence.
 
void addBoolean (int index, boolean element)
 Shift all elements in the sequence starting from the given index and add the element to the given index.
 
boolean getBoolean (int index)
 Returns the boolean at the given index.
 
boolean setBoolean (int index, boolean element)
 Set the new boolean at the given index and return the old boolean.
 
void setBoolean (int dstIndex, boolean[] elements, int srcIndex, int length)
 Copy a portion of the given array into this sequence.
 
boolean[] toArrayBoolean (boolean[] array)
 Return an array containing copy of the contents of this sequence.
 
Object get (int index)
 A wrapper for getBoolean(int) that returns a java.lang.Boolean.
 
Object set (int index, Object element)
 A wrapper for setBoolean().
 
void add (int index, Object element)
 A wrapper for addBoolean(int, int).
 
- Public Member Functions inherited from AbstractPrimitiveSequence
final Class getElementType ()
 
void loan (Object buffer, int new_length)
 Loan a contiguous buffer to this sequence.
 
void unloan ()
 Return the loaned buffer in the sequence and set the maximum to 0.
 
final boolean hasOwnership ()
 Return the value of the owned flag.
 
final void clear ()
 
final void setSize (int newSize)
 
final int size ()
 
final Object copy_from (Object src)
 
- Public Member Functions inherited from AbstractSequence
void add (int index, Object element)
 Inserts the specified element at the specified position in this sequence.
 
boolean add (Object element)
 Appends the specified element to the end of this sequence.
 
final Object remove (int index)
 Remove the element at the given index by shifting all subsequent elements "left" by one.
 
- 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 ()
 

Detailed Description

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

Instantiates:
<<generic>> com.rti.dds.infrastructure.com.rti.dds.util.Sequence
See Also
boolean
com.rti.dds.infrastructure.com.rti.dds.util.Sequence

Constructor & Destructor Documentation

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

BooleanSeq ( int  initialMaximum)

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

BooleanSeq ( boolean[]  booleans)

Constructs a new sequence containing the given booleans.

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

Member Function Documentation

boolean addAllBoolean ( boolean[]  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.
boolean addAllBoolean ( boolean[]  elements)
Exceptions
NullPointerExceptionif the given array is null
void addBoolean ( boolean  element)

Append the element to the end of the sequence.

void addBoolean ( int  index,
boolean  element 
)

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

boolean getBoolean ( int  index)

Returns the boolean at the given index.

Exceptions
IndexOutOfBoundsExceptionif the index is out of bounds.
boolean setBoolean ( int  index,
boolean  element 
)

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

Exceptions
IndexOutOfBoundsExceptionif the index is out of bounds.
void setBoolean ( int  dstIndex,
boolean[]  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.
boolean [] toArrayBoolean ( boolean[]  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.
Object get ( int  index)
virtual

A wrapper for getBoolean(int) that returns a java.lang.Boolean.

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

Implements AbstractPrimitiveSequence.

Object set ( int  index,
Object  element 
)
virtual

A wrapper for setBoolean().

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

Implements AbstractPrimitiveSequence.

void add ( int  index,
Object  element 
)
virtual

A wrapper for addBoolean(int, int).

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

Implements AbstractPrimitiveSequence.


RTI Connext Java API Version 5.0.0 Copyright © Thu Aug 30 2012 Real-Time Innovations, Inc