Package org.apache.wiki.util
Class PriorityList<E>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- org.apache.wiki.util.PriorityList<E>
-
- All Implemented Interfaces:
java.lang.Iterable<E>
,java.util.Collection<E>
,java.util.List<E>
public class PriorityList<E> extends java.util.AbstractList<E>
Builds a simple, priority-based List implementation. The list will be sorted according to the priority. If two items are inserted with the same priority, their order is the insertion order - i.e. the new one is appended last in the insertion list.Priority is an integer, and the list is sorted in descending order (that is, 100 is before 10 is before 0 is before -40).
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_PRIORITY
This is the default priority, which is used if no priority is defined.
-
Constructor Summary
Constructors Constructor Description PriorityList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(E o)
Adds an object using the default priority to the List.void
add(E o, int priority)
Adds an object to its correct place in the list, using the given priority.E
get(int index)
Returns the object at index "index".int
size()
Returns the current size of the list.-
Methods inherited from class java.util.AbstractList
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
-
-
-
Field Detail
-
DEFAULT_PRIORITY
public static final int DEFAULT_PRIORITY
This is the default priority, which is used if no priority is defined. It's current value is zero.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PriorityList
public PriorityList()
-
-
Method Detail
-
add
public void add(E o, int priority)
Adds an object to its correct place in the list, using the given priority.- Parameters:
o
- Object to add.priority
- Priority.
-
-