Package com.swiftmq.tools.collection
Class ListSet
- java.lang.Object
-
- com.swiftmq.tools.collection.ListSet
-
public class ListSet extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ListSet(int max)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(java.lang.Object o)
void
addAll(java.util.Collection c)
java.util.ListIterator
backwardIterator()
void
clear()
boolean
contains(java.lang.Object o)
java.util.ListIterator
forwardIterator()
int
getMax()
boolean
remove(java.lang.Object o)
void
removeAll(java.util.Collection c)
void
resize(int newSize)
int
size()
-
-
-
Method Detail
-
resize
public void resize(int newSize)
-
add
public void add(java.lang.Object o)
-
forwardIterator
public java.util.ListIterator forwardIterator()
-
backwardIterator
public java.util.ListIterator backwardIterator()
-
addAll
public void addAll(java.util.Collection c)
-
removeAll
public void removeAll(java.util.Collection c)
-
remove
public boolean remove(java.lang.Object o)
-
contains
public boolean contains(java.lang.Object o)
-
size
public int size()
-
getMax
public int getMax()
-
clear
public void clear()
-
-