|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectat.jku.ssw.List
public abstract class List
A list of characters.
Constructor Summary | |
---|---|
List()
|
Method Summary | |
---|---|
abstract void |
add(char value)
Appends the value to the end of this list. |
abstract void |
add(int index,
char value)
Inserts the value at position index. |
abstract char |
get(int index)
Returns the value at position index. |
abstract int |
indexOf(char value)
Returns the index of the first occurrence of the value. |
abstract Iterator |
iterator()
Returns an iterator of the values in this list. |
abstract char |
remove(int index)
Removes the value at position index. |
abstract int |
size()
Returns the number of values in this list. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public List()
Method Detail |
---|
public abstract void add(char value)
public abstract void add(int index, char value)
public abstract char get(int index)
public abstract char remove(int index)
public abstract int indexOf(char value)
public abstract int size()
public abstract Iterator iterator()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |