- get(int) - Method in class list.IntList
-
Gets the data at a particular entry in this list.
For example, if myList is
[1, 2, 5, 3]
then myList.get(0) returns 1, and myList.get(2) returns 5.
- getData() - Method in class list.IntListEntry
-
Access the data stored in the list entry
- getLength() - Method in class list.IntList
-
Gets the length of this list.
For example, if myList is
[1, 2, 5, 3]
then myList.getLength() is 4.
- getNext() - Method in class list.IntListEntry
-
Returns a reference variable that points to the subsequent list entry
(If there is no subsequent entry in the list, returns null).