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 StringListModifier and TypeMethodDescriptionStringList.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 specifiedstartindex (inclusive) andstopindex (exclusive).Methods in cs1302.adt with parameters of type StringListModifier and TypeMethodDescriptionbooleanStringList.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 StringListMethods in cs1302.oracle that return StringListModifier and TypeMethodDescriptionOracleStringList.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 specifiedstartindex (inclusive) andstopindex (exclusive).Methods in cs1302.oracle with parameters of type StringListModifier and TypeMethodDescriptionbooleanOracleStringList.add(int index, StringList itemList) Inserts multiple items into this string list at the specified index position.