Uses of Interface
net.innig.collect.Radix

Packages that use Radix
net.innig.collect   
 

Uses of Radix in net.innig.collect
 

Classes in net.innig.collect that implement Radix
 class IntegralRadix
          A radix which supports Byte, Short, Integer, and Long.
 class StringRadix
          A radix which supports String.
 

Methods in net.innig.collect that return Radix
static Radix IntegralRadix.forType(java.lang.Class numberType)
          Returns a base-256 radix which handles numbers of the given type in their natural form (signed, and all bits used).
 Radix RadixMap.getRadix()
           
 

Methods in net.innig.collect with parameters of type Radix
static void InnigCollections.radixSort(java.util.List list, Radix radix)
          Applies a linear-time radix sorting algorithm to a list.
 

Constructors in net.innig.collect with parameters of type Radix
RadixMap(Radix radix)
           
RadixMap(Radix radix, java.util.Map otherMap)