Class 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.