Interface CommonArrayFS<E>

    • Method Detail

      • size

        int size()
        Return the size of the array.
        Returns:
        The size of the array.
      • toStringArray

        default java.lang.String[] toStringArray()
        Creates a new string array and copies this array values into it.
        Returns:
        A Java array copy of this array.
      • copyToArray

        void copyToArray​(int srcOffset,
                         java.lang.String[] dest,
                         int destOffset,
                         int length)
                  throws java.lang.ArrayIndexOutOfBoundsException
        Copy the contents of the array to an external string array.
        Parameters:
        srcOffset - The index of the first element to copy.
        dest - The array to copy to.
        destOffset - Where to start copying into dest.
        length - The number of elements to copy.
        Throws:
        java.lang.ArrayIndexOutOfBoundsException - If srcOffset < 0 or length > size() or destOffset + length > destArray.length.
      • copyFromArray

        void copyFromArray​(java.lang.String[] src,
                           int srcOffset,
                           int destOffset,
                           int length)
                    throws java.lang.ArrayIndexOutOfBoundsException,
                           java.lang.NumberFormatException
        Copy the contents of an external string array into this array. The strings are parsed and converted to floats.
        Parameters:
        src - The source array.
        srcOffset - Where to start copying in the source array.
        destOffset - Where to start copying to in the destination array.
        length - The number of elements to copy.
        Throws:
        java.lang.ArrayIndexOutOfBoundsException - When length conditions are not met.
        java.lang.NumberFormatException - When the input strings do not represent valid floats.
        java.lang.UnsupportedOperationException - When the array is an array of FSs.
      • getValuesAsCommaSeparatedString

        default java.lang.String getValuesAsCommaSeparatedString()
        Returns:
        a comma-separated string of the string values of the elements of the array
      • copyValuesFrom

        void copyValuesFrom​(CommonArrayFS<E> v)
        Copy values from another array of the same kind
        Parameters:
        v - the other array
      • isEmpty

        default boolean isEmpty()
        Returns:
        true if the array is empty