|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectde.jstacs.utils.IntList
public final class IntList
A simple list of primitive type int.
| Constructor Summary | |
|---|---|
IntList()
This is the default constructor that creates an IntList with
initial length 10. |
|
IntList(int size)
This is the default constructor that creates an IntList with
initial length size. |
|
| Method Summary | |
|---|---|
void |
add(int val)
Adds the element val at the end of the list. |
int |
addConditional(int val)
Adds val to the list only if
it is not already contained in the list. |
void |
clear()
Removes all elements from the list. |
IntList |
clone()
|
int |
contains(int val)
Checks if val is already returned in the list. |
boolean |
equals(Object o)
|
int |
get(int index)
Returns the element with the specified index. |
int |
length()
Returns the number of inserted elements. |
int |
pop()
Returns the last element and removes it from the list. |
void |
reverse()
This method reverses the list, i.e., after invoking this method the formerly first element is than the last, the formerly second element is than the last but one, ... |
void |
sort()
This method sorts the elements of the list. |
int[] |
toArray()
This method returns an int array containing all elements of
the list. |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public IntList()
IntList with
initial length 10.
public IntList(int size)
throws IllegalArgumentException
IntList with
initial length size.
size - the initial size, has to be positive
IllegalArgumentException - if size is less than 1| Method Detail |
|---|
public IntList clone()
throws CloneNotSupportedException
clone in class ObjectCloneNotSupportedExceptionpublic void add(int val)
val at the end of the list.
val - the element that should be insertedpublic int addConditional(int val)
val to the list only if
it is not already contained in the list.
val - the value to be added
val if it is already contained in the list and -1 otherwisepublic void clear()
public int get(int index)
index.
index - the specified index of the element to return
public int pop()
public int contains(int val)
val is already returned in the list.
val - the value
val if it is contained in the list and -1 otherwisepublic int length()
public int[] toArray()
int array containing all elements of
the list.
int array containing all elements of the listpublic void reverse()
public void sort()
Arrays.sort(int[], int, int)public boolean equals(Object o)
equals in class Objectpublic String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||