Interface StringArrayFS

    • Method Detail

      • get

        java.lang.String get​(int i)
                      throws java.lang.ArrayIndexOutOfBoundsException
        Get the i-th string from the array.
        Parameters:
        i - the index
        Returns:
        The i-th element.
        Throws:
        java.lang.ArrayIndexOutOfBoundsException - If the index is out of bounds.
      • set

        void set​(int i,
                 java.lang.String str)
          throws java.lang.ArrayIndexOutOfBoundsException
        Set the i-th value.
        Parameters:
        i - The index.
        str - The value.
        Throws:
        java.lang.ArrayIndexOutOfBoundsException - If i is out of bounds.
      • toArray

        java.lang.String[] toArray()
        Creates a new array the this array is copied to.
        Returns:
        A Java array copy of this FS array.