Interface StringList

    • Method Detail

      • add

        boolean add​(java.lang.String s)
      • get

        java.lang.String get​(int index)
      • size

        int size()
      • toStringArray

        java.lang.String[] toStringArray()
      • toStringArray

        java.lang.String[] toStringArray​(int from,
                                         int to)
        Return a section of the contents of the list. If the list is too short the array is filled with nulls.
        Parameters:
        from - the initial index of the range to be copied, inclusive
        to - the final index of the range to be copied, exclusive.
        Returns:
        an array of length to - from