| bak.pcj.benchmark.IntKeyMapFactory
IntKeyMapFactory | public interface IntKeyMapFactory (Code) | | This interface represents factories of maps of int keys. It
is used with the
IntKeyMapBenchmark IntKeyMapBenchmark class
for producing map objects.
author: Søren Bak version: 1.0 2003/8/1 since: 1.0 |
Method Summary | |
IntKeyMap | create(int[] keys, Integer[] values) Creates a new instance of a map from int key to objects initially
containing the specified elements.
Parameters: keys - the keys that the resulting set willcontain. Parameters: values - the values that the resulting set willcontain. |
create | IntKeyMap create(int[] keys, Integer[] values)(Code) | | Creates a new instance of a map from int key to objects initially
containing the specified elements.
Parameters: keys - the keys that the resulting set willcontain. Parameters: values - the values that the resulting set willcontain. a map of int keys/values containing the specifiedelements. throws: NullPointerException - if elements is null. |
|
|