public class

ObjectArray

extends Object
java.lang.Object
   ↳ com.microstrategy.utils.ObjectArray

Class Overview

This class is only used internally for BridgeUtils .Net project.

Summary

Public Methods
void add(boolean b)
Adds a boolean value.
void add(String v)
void add(int v)
Adds an integer.
Object get(int index)
Returns the Object at the index.
int size()
Returns the size of the array.
Object[] toArray()
Converts it to Object array.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public void add (boolean b)

Adds a boolean value.

public void add (String v)

public void add (int v)

Adds an integer.

public Object get (int index)

Returns the Object at the index.

Parameters
index The index of the object.
Returns
  • the Object at the index

public int size ()

Returns the size of the array.

Returns
  • the size of the array.

public Object[] toArray ()

Converts it to Object array.

Returns
  • the array of Objects.