prefuse.util.collections
Interface BooleanIntSortedMap

All Superinterfaces:
IntSortedMap
All Known Implementing Classes:
BooleanIntBitSetMap

public interface BooleanIntSortedMap
extends IntSortedMap

Sorted map that maps from a boolean key to an int value.

Author:
jeffrey heer

Method Summary
 boolean containsKey(boolean key)
           
 boolean firstKey()
           
 int get(boolean key)
           
 LiteralIterator keyIterator()
           
 LiteralIterator keyRangeIterator(boolean fromKey, boolean fromInc, boolean toKey, boolean toInc)
           
 boolean lastKey()
           
 int put(boolean key, int value)
           
 int remove(boolean key)
           
 int remove(boolean key, int value)
           
 IntIterator valueRangeIterator(boolean fromKey, boolean fromInc, boolean toKey, boolean toInc)
           
 
Methods inherited from interface prefuse.util.collections.IntSortedMap
clear, comparator, containsValue, getMaximum, getMedian, getMinimum, getUniqueCount, isAllowDuplicates, isEmpty, size, valueIterator
 

Method Detail

firstKey

boolean firstKey()

lastKey

boolean lastKey()

containsKey

boolean containsKey(boolean key)

valueRangeIterator

IntIterator valueRangeIterator(boolean fromKey,
                               boolean fromInc,
                               boolean toKey,
                               boolean toInc)

keyIterator

LiteralIterator keyIterator()

keyRangeIterator

LiteralIterator keyRangeIterator(boolean fromKey,
                                 boolean fromInc,
                                 boolean toKey,
                                 boolean toInc)

get

int get(boolean key)

remove

int remove(boolean key)

remove

int remove(boolean key,
           int value)

put

int put(boolean key,
        int value)


Copyright © 2007 Regents of the University of California