net.openhft.collect.map
Interface ShortByteMapFactory

All Known Subinterfaces:
HashShortByteMapFactory

public interface ShortByteMapFactory

An immutable factory of ShortByteMaps.

See Also:
ShortByteMap

Method Summary
 byte getDefaultValue()
           
 ShortByteMap newImmutableMap(Consumer<ShortByteConsumer> entriesSupplier)
           
 ShortByteMap newImmutableMap(Consumer<ShortByteConsumer> entriesSupplier, int expectedSize)
           
 ShortByteMap newImmutableMap(Iterable<Short> keys, Iterable<Byte> values)
           
 ShortByteMap newImmutableMap(Iterable<Short> keys, Iterable<Byte> values, int expectedSize)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, int expectedSize)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, int expectedSize)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, int expectedSize)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, Map<Short,Byte> map5)
           
 ShortByteMap newImmutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, Map<Short,Byte> map5, int expectedSize)
           
 ShortByteMap newImmutableMap(short[] keys, byte[] values)
           
 ShortByteMap newImmutableMap(Short[] keys, Byte[] values)
           
 ShortByteMap newImmutableMap(short[] keys, byte[] values, int expectedSize)
           
 ShortByteMap newImmutableMap(Short[] keys, Byte[] values, int expectedSize)
           
 ShortByteMap newImmutableMapOf(short k1, byte v1)
           
 ShortByteMap newImmutableMapOf(short k1, byte v1, short k2, byte v2)
           
 ShortByteMap newImmutableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3)
           
 ShortByteMap newImmutableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3, short k4, byte v4)
           
 ShortByteMap newImmutableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3, short k4, byte v4, short k5, byte v5)
           
 ShortByteMap newMutableMap()
           
 ShortByteMap newMutableMap(Consumer<ShortByteConsumer> entriesSupplier)
           
 ShortByteMap newMutableMap(Consumer<ShortByteConsumer> entriesSupplier, int expectedSize)
           
 ShortByteMap newMutableMap(int expectedSize)
           
 ShortByteMap newMutableMap(Iterable<Short> keys, Iterable<Byte> values)
           
 ShortByteMap newMutableMap(Iterable<Short> keys, Iterable<Byte> values, int expectedSize)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, int expectedSize)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, int expectedSize)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, int expectedSize)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, Map<Short,Byte> map5)
           
 ShortByteMap newMutableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, Map<Short,Byte> map5, int expectedSize)
           
 ShortByteMap newMutableMap(short[] keys, byte[] values)
           
 ShortByteMap newMutableMap(Short[] keys, Byte[] values)
           
 ShortByteMap newMutableMap(short[] keys, byte[] values, int expectedSize)
           
 ShortByteMap newMutableMap(Short[] keys, Byte[] values, int expectedSize)
           
 ShortByteMap newMutableMapOf(short k1, byte v1)
           
 ShortByteMap newMutableMapOf(short k1, byte v1, short k2, byte v2)
           
 ShortByteMap newMutableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3)
           
 ShortByteMap newMutableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3, short k4, byte v4)
           
 ShortByteMap newMutableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3, short k4, byte v4, short k5, byte v5)
           
 ShortByteMap newUpdatableMap()
           
 ShortByteMap newUpdatableMap(Consumer<ShortByteConsumer> entriesSupplier)
           
 ShortByteMap newUpdatableMap(Consumer<ShortByteConsumer> entriesSupplier, int expectedSize)
           
 ShortByteMap newUpdatableMap(int expectedSize)
           
 ShortByteMap newUpdatableMap(Iterable<Short> keys, Iterable<Byte> values)
           
 ShortByteMap newUpdatableMap(Iterable<Short> keys, Iterable<Byte> values, int expectedSize)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, int expectedSize)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, int expectedSize)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, int expectedSize)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, Map<Short,Byte> map5)
           
 ShortByteMap newUpdatableMap(Map<Short,Byte> map1, Map<Short,Byte> map2, Map<Short,Byte> map3, Map<Short,Byte> map4, Map<Short,Byte> map5, int expectedSize)
           
 ShortByteMap newUpdatableMap(short[] keys, byte[] values)
           
 ShortByteMap newUpdatableMap(Short[] keys, Byte[] values)
           
 ShortByteMap newUpdatableMap(short[] keys, byte[] values, int expectedSize)
           
 ShortByteMap newUpdatableMap(Short[] keys, Byte[] values, int expectedSize)
           
 ShortByteMap newUpdatableMapOf(short k1, byte v1)
           
 ShortByteMap newUpdatableMapOf(short k1, byte v1, short k2, byte v2)
           
 ShortByteMap newUpdatableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3)
           
 ShortByteMap newUpdatableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3, short k4, byte v4)
           
 ShortByteMap newUpdatableMapOf(short k1, byte v1, short k2, byte v2, short k3, byte v3, short k4, byte v4, short k5, byte v5)
           
 ShortByteMapFactory withDefaultValue(byte defaultValue)
           
 

Method Detail

getDefaultValue

byte getDefaultValue()

withDefaultValue

ShortByteMapFactory withDefaultValue(byte defaultValue)
See Also:
ShortByteMap.defaultValue()

newMutableMap

ShortByteMap newMutableMap()

newMutableMap

ShortByteMap newMutableMap(int expectedSize)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2,
                           int expectedSize)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2,
                           Map<Short,Byte> map3,
                           int expectedSize)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2,
                           Map<Short,Byte> map3,
                           Map<Short,Byte> map4,
                           int expectedSize)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2,
                           Map<Short,Byte> map3,
                           Map<Short,Byte> map4,
                           Map<Short,Byte> map5,
                           int expectedSize)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2,
                           Map<Short,Byte> map3)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2,
                           Map<Short,Byte> map3,
                           Map<Short,Byte> map4)

newMutableMap

ShortByteMap newMutableMap(Map<Short,Byte> map1,
                           Map<Short,Byte> map2,
                           Map<Short,Byte> map3,
                           Map<Short,Byte> map4,
                           Map<Short,Byte> map5)

newMutableMap

ShortByteMap newMutableMap(Consumer<ShortByteConsumer> entriesSupplier)

newMutableMap

ShortByteMap newMutableMap(Consumer<ShortByteConsumer> entriesSupplier,
                           int expectedSize)

newMutableMap

ShortByteMap newMutableMap(short[] keys,
                           byte[] values)

newMutableMap

ShortByteMap newMutableMap(short[] keys,
                           byte[] values,
                           int expectedSize)

newMutableMap

ShortByteMap newMutableMap(Short[] keys,
                           Byte[] values)

newMutableMap

ShortByteMap newMutableMap(Short[] keys,
                           Byte[] values,
                           int expectedSize)

newMutableMap

ShortByteMap newMutableMap(Iterable<Short> keys,
                           Iterable<Byte> values)

newMutableMap

ShortByteMap newMutableMap(Iterable<Short> keys,
                           Iterable<Byte> values,
                           int expectedSize)

newMutableMapOf

ShortByteMap newMutableMapOf(short k1,
                             byte v1)

newMutableMapOf

ShortByteMap newMutableMapOf(short k1,
                             byte v1,
                             short k2,
                             byte v2)

newMutableMapOf

ShortByteMap newMutableMapOf(short k1,
                             byte v1,
                             short k2,
                             byte v2,
                             short k3,
                             byte v3)

newMutableMapOf

ShortByteMap newMutableMapOf(short k1,
                             byte v1,
                             short k2,
                             byte v2,
                             short k3,
                             byte v3,
                             short k4,
                             byte v4)

newMutableMapOf

ShortByteMap newMutableMapOf(short k1,
                             byte v1,
                             short k2,
                             byte v2,
                             short k3,
                             byte v3,
                             short k4,
                             byte v4,
                             short k5,
                             byte v5)

newUpdatableMap

ShortByteMap newUpdatableMap()

newUpdatableMap

ShortByteMap newUpdatableMap(int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4,
                             int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4,
                             Map<Short,Byte> map5,
                             int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4)

newUpdatableMap

ShortByteMap newUpdatableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4,
                             Map<Short,Byte> map5)

newUpdatableMap

ShortByteMap newUpdatableMap(Consumer<ShortByteConsumer> entriesSupplier)

newUpdatableMap

ShortByteMap newUpdatableMap(Consumer<ShortByteConsumer> entriesSupplier,
                             int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(short[] keys,
                             byte[] values)

newUpdatableMap

ShortByteMap newUpdatableMap(short[] keys,
                             byte[] values,
                             int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(Short[] keys,
                             Byte[] values)

newUpdatableMap

ShortByteMap newUpdatableMap(Short[] keys,
                             Byte[] values,
                             int expectedSize)

newUpdatableMap

ShortByteMap newUpdatableMap(Iterable<Short> keys,
                             Iterable<Byte> values)

newUpdatableMap

ShortByteMap newUpdatableMap(Iterable<Short> keys,
                             Iterable<Byte> values,
                             int expectedSize)

newUpdatableMapOf

ShortByteMap newUpdatableMapOf(short k1,
                               byte v1)

newUpdatableMapOf

ShortByteMap newUpdatableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2)

newUpdatableMapOf

ShortByteMap newUpdatableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2,
                               short k3,
                               byte v3)

newUpdatableMapOf

ShortByteMap newUpdatableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2,
                               short k3,
                               byte v3,
                               short k4,
                               byte v4)

newUpdatableMapOf

ShortByteMap newUpdatableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2,
                               short k3,
                               byte v3,
                               short k4,
                               byte v4,
                               short k5,
                               byte v5)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             int expectedSize)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             int expectedSize)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4,
                             int expectedSize)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4,
                             Map<Short,Byte> map5,
                             int expectedSize)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4)

newImmutableMap

ShortByteMap newImmutableMap(Map<Short,Byte> map1,
                             Map<Short,Byte> map2,
                             Map<Short,Byte> map3,
                             Map<Short,Byte> map4,
                             Map<Short,Byte> map5)

newImmutableMap

ShortByteMap newImmutableMap(Consumer<ShortByteConsumer> entriesSupplier)

newImmutableMap

ShortByteMap newImmutableMap(Consumer<ShortByteConsumer> entriesSupplier,
                             int expectedSize)

newImmutableMap

ShortByteMap newImmutableMap(short[] keys,
                             byte[] values)

newImmutableMap

ShortByteMap newImmutableMap(short[] keys,
                             byte[] values,
                             int expectedSize)

newImmutableMap

ShortByteMap newImmutableMap(Short[] keys,
                             Byte[] values)

newImmutableMap

ShortByteMap newImmutableMap(Short[] keys,
                             Byte[] values,
                             int expectedSize)

newImmutableMap

ShortByteMap newImmutableMap(Iterable<Short> keys,
                             Iterable<Byte> values)

newImmutableMap

ShortByteMap newImmutableMap(Iterable<Short> keys,
                             Iterable<Byte> values,
                             int expectedSize)

newImmutableMapOf

ShortByteMap newImmutableMapOf(short k1,
                               byte v1)

newImmutableMapOf

ShortByteMap newImmutableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2)

newImmutableMapOf

ShortByteMap newImmutableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2,
                               short k3,
                               byte v3)

newImmutableMapOf

ShortByteMap newImmutableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2,
                               short k3,
                               byte v3,
                               short k4,
                               byte v4)

newImmutableMapOf

ShortByteMap newImmutableMapOf(short k1,
                               byte v1,
                               short k2,
                               byte v2,
                               short k3,
                               byte v3,
                               short k4,
                               byte v4,
                               short k5,
                               byte v5)