Package com.microstrategy.utils
Class ObjectArray
- java.lang.Object
-
- com.microstrategy.utils.ObjectArray
-
public class ObjectArray extends java.lang.Object
This class is only used internally for BridgeUtils .Net project.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(boolean b)
Adds a boolean value.void
add(int v)
Adds an integer.void
add(java.lang.String v)
java.lang.Object
get(int index)
Returns the Object at the index.int
size()
Returns the size of the array.java.lang.Object[]
toArray()
Converts it to Object array.
-
-
-
Method Detail
-
add
public void add(java.lang.String v)
-
add
public void add(int v)
Adds an integer.- Parameters:
v
-
-
add
public void add(boolean b)
Adds a boolean value.- Parameters:
b
-
-
get
public java.lang.Object get(int index)
Returns the Object at the index.- Parameters:
index
- The index of the object.- Returns:
- the Object at the index
-
size
public int size()
Returns the size of the array.- Returns:
- the size of the array.
-
toArray
public java.lang.Object[] toArray()
Converts it to Object array.- Returns:
- the array of Objects.
-
-