| bak.pcj.benchmark.IntKeyIntMapFactory
IntKeyIntMapFactory | public interface IntKeyIntMapFactory (Code) | | This interface represents factories of maps of int values. It
is used with the
IntKeyIntMapBenchmark IntKeyIntMapBenchmark class
for producing map objects.
author: Søren Bak version: 1.0 2003/4/1 since: 1.0 |
Method Summary | |
IntKeyIntMap | create(int[] keys, int[] values) Creates a new instance of a map from int key to int values initially
containing the specified elements.
Parameters: keys - the keys that the resulting set willcontain. Parameters: values - the values that the resulting set willcontain. |
create | IntKeyIntMap create(int[] keys, int[] values)(Code) | | Creates a new instance of a map from int key to int values 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. |
|
|