Sharkysoft home

lava.util
Class PRIORITY

java.lang.Object
  |
  +--lava.util.PRIORITY

public class PRIORITY
extends java.lang.Object

Constants for PriorityQueue.

Details: PRIORITY is a set of constants for use with PriorityQueue.

Since:
1999.04.05

Field Summary
static int HIGHEST
          Highest priority.
static int LOWEST
          Lowest priority.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

HIGHEST

public static final int HIGHEST
Highest priority.

Details: HIGHEST indicates the highest possible priority. Elements added to a PriorityQueue with this priority setting will be inserted near the front of the queue.


LOWEST

public static final int LOWEST
Lowest priority.

Details: LOWEST indicates the lowest possible priority. Elements added to a PriorityQueue with this priority setting will be appended to the end of the queue.


Sharkysoft home