Package antlr.collections
Interface List
-
- All Known Implementing Classes:
LList
public interface ListA simple List interface that describes operations on a list.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(Object o)voidappend(Object o)ObjectelementAt(int index)Enumerationelements()booleanincludes(Object o)intlength()
-
-
-
Method Detail
-
add
void add(Object o)
-
append
void append(Object o)
-
elementAt
Object elementAt(int index) throws NoSuchElementException
- Throws:
NoSuchElementException
-
elements
Enumeration elements()
-
includes
boolean includes(Object o)
-
length
int length()
-
-