Uses of Interface
cs1302.adt.StringList

Packages that use StringList
Package
Description
Classes and interfaces to support abstract data types (ADTs).
Classes and interfaces to support the instructor's oracle implementations.
  • Uses of StringList in cs1302.adt

    Methods in cs1302.adt that return StringList
    Modifier and Type
    Method
    Description
    StringList.reverse()
    Returns a new string list that contains the items from this string list in reverse order.
    StringList.slice(int start, int stop)
    Returns a new string list that contains the items from this list between the specified start index (inclusive) and stop index (exclusive).
    Methods in cs1302.adt with parameters of type StringList
    Modifier and Type
    Method
    Description
    boolean
    StringList.add(int index, StringList itemList)
    Inserts multiple items into this string list at the specified index position.
  • Uses of StringList in cs1302.oracle

    Classes in cs1302.oracle that implement StringList
    Modifier and Type
    Class
    Description
    class 
    Oracle implementation of a StringList.
    Methods in cs1302.oracle that return StringList
    Modifier and Type
    Method
    Description
    OracleStringList.reverse()
    Returns a new string list that contains the items from this string list in reverse order.
    OracleStringList.slice(int start, int stop)
    Returns a new string list that contains the items from this list between the specified start index (inclusive) and stop index (exclusive).
    Methods in cs1302.oracle with parameters of type StringList
    Modifier and Type
    Method
    Description
    boolean
    OracleStringList.add(int index, StringList itemList)
    Inserts multiple items into this string list at the specified index position.