All Packages Class Hierarchy This Package Previous Next Index
Interface EDU.bmrb.starlibj.StarVectorLike
- public interface StarVectorLike
This interface is declared by any object in the starlibj that
wants to announce to the world that it will behave a lot like
a java.util.vector. Anyone familiar with the java.util.vector
class should have no problem understanding how yo use a class
that implements the VectorLike interface.
- See Also:
- vector
-
addElement(Object)
- Just like the Vector method of the same name.
-
contains(Object)
- Just like the Vector method of the same name.
-
elementAt(int)
- Just like the Vector method of the same name.
-
elements()
- Just like the Vector method of the same name.
-
firstElement()
- Just like the Vector method of the same name.
-
indexOf(Object)
- Just like the Vector method of the same name.
-
indexOf(Object, int)
- Just like the Vector method of the same name.
-
insertElementAt(Object, int)
- Just like the Vector method of the same name.
-
isEmpty()
- Just like the Vector method of the same name.
-
lastElement()
- Just like the Vector method of the same name.
-
lastIndexOf(Object)
- Just like the Vector method of the same name.
-
lastIndexOf(Object, int)
- Just like the Vector method of the same name.
-
removeElement(Object)
- Just like the Vector method of the same name.
-
removeElementAt(int)
- Similar to the Vector method of the same name.
-
setElementAt(Object, int)
- Just like the Vector method of the same name.
-
size()
-
size
public abstract int size()
isEmpty
public abstract boolean isEmpty()
- Just like the Vector method of the same name.
- See Also:
- isEmpty
elements
public abstract Enumeration elements()
- Just like the Vector method of the same name.
- See Also:
- Enumeration
contains
public abstract boolean contains(Object obj)
- Just like the Vector method of the same name.
- See Also:
- contains
indexOf
public abstract int indexOf(Object obj)
- Just like the Vector method of the same name.
- See Also:
- indexOf
indexOf
public abstract int indexOf(Object obj,
int index)
- Just like the Vector method of the same name.
- See Also:
- indexOf
lastIndexOf
public abstract int lastIndexOf(Object obj)
- Just like the Vector method of the same name.
- See Also:
- lastIndexOf
lastIndexOf
public abstract int lastIndexOf(Object obj,
int index)
- Just like the Vector method of the same name.
- See Also:
- lastIndexOf
elementAt
public abstract Object elementAt(int index)
- Just like the Vector method of the same name.
- See Also:
- elementAt
firstElement
public abstract Object firstElement()
- Just like the Vector method of the same name.
- See Also:
- firstElement
lastElement
public abstract Object lastElement()
- Just like the Vector method of the same name.
- See Also:
- lastElement
setElementAt
public abstract void setElementAt(Object obj,
int index) throws WrongElementType
- Just like the Vector method of the same name.
- See Also:
- setElementAt
removeElementAt
public abstract void removeElementAt(int index)
- Similar to the Vector method of the same name.
- See Also:
- removeElementAt
insertElementAt
public abstract void insertElementAt(Object obj,
int index) throws WrongElementType
- Just like the Vector method of the same name.
- See Also:
- insertElementAt
addElement
public abstract void addElement(Object obj) throws WrongElementType
- Just like the Vector method of the same name.
- See Also:
- addElement
removeElement
public abstract boolean removeElement(Object obj)
- Just like the Vector method of the same name.
- See Also:
- removeElement
All Packages Class Hierarchy This Package Previous Next Index