Interface CopyFromToJavaArray

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void copyFrom​(byte[] pFrom)
      Copies the content of a byte array to this memory object.
      void copyFrom​(char[] pFrom)
      Copies the content of a char array to this memory object.
      void copyFrom​(double[] pFrom)
      Copies the content of a double array to this memory object.
      void copyFrom​(float[] pFrom)
      Copies the content of a float array to this memory object.
      void copyFrom​(int[] pFrom)
      Copies the content of a int array to this memory object.
      void copyFrom​(long[] pFrom)
      Copies the content of a long array to this memory object.
      void copyFrom​(short[] pFrom)
      Copies the content of a short array to this memory object.
      void copyTo​(byte[] pTo)
      Copies the content of that memory object to a byte array.
      void copyTo​(char[] pTo)
      Copies the content of that memory object to a char array.
      void copyTo​(double[] pTo)
      Copies the content of that memory object to a double array.
      void copyTo​(float[] pTo)
      Copies the content of that memory object to a float array.
      void copyTo​(int[] pTo)
      Copies the content of that memory object to a int array.
      void copyTo​(long[] pTo)
      Copies the content of that memory object to a long array.
      void copyTo​(short[] pTo)
      Copies the content of that memory object to a short array.
    • Method Detail

      • copyTo

        void copyTo​(byte[] pTo)
        Copies the content of that memory object to a byte array.
        Parameters:
        pTo - preallocated byte array.
      • copyTo

        void copyTo​(short[] pTo)
        Copies the content of that memory object to a short array.
        Parameters:
        pTo - preallocated short array.
      • copyTo

        void copyTo​(char[] pTo)
        Copies the content of that memory object to a char array.
        Parameters:
        pTo - preallocated char array.
      • copyTo

        void copyTo​(int[] pTo)
        Copies the content of that memory object to a int array.
        Parameters:
        pTo - preallocated int array.
      • copyTo

        void copyTo​(long[] pTo)
        Copies the content of that memory object to a long array.
        Parameters:
        pTo - preallocated long array.
      • copyTo

        void copyTo​(float[] pTo)
        Copies the content of that memory object to a float array.
        Parameters:
        pTo - preallocated float array.
      • copyTo

        void copyTo​(double[] pTo)
        Copies the content of that memory object to a double array.
        Parameters:
        pTo - preallocated double array.
      • copyFrom

        void copyFrom​(byte[] pFrom)
        Copies the content of a byte array to this memory object.
        Parameters:
        pFrom - preallocated byte array.
      • copyFrom

        void copyFrom​(short[] pFrom)
        Copies the content of a short array to this memory object.
        Parameters:
        pFrom - preallocated short array.
      • copyFrom

        void copyFrom​(char[] pFrom)
        Copies the content of a char array to this memory object.
        Parameters:
        pFrom - preallocated char array.
      • copyFrom

        void copyFrom​(int[] pFrom)
        Copies the content of a int array to this memory object.
        Parameters:
        pFrom - preallocated int array.
      • copyFrom

        void copyFrom​(long[] pFrom)
        Copies the content of a long array to this memory object.
        Parameters:
        pFrom - preallocated long array.
      • copyFrom

        void copyFrom​(float[] pFrom)
        Copies the content of a float array to this memory object.
        Parameters:
        pFrom - preallocated float array.
      • copyFrom

        void copyFrom​(double[] pFrom)
        Copies the content of a double array to this memory object.
        Parameters:
        pFrom - preallocated double array.