| bak.pcj.benchmark.IntListFactory
IntListFactory | public interface IntListFactory (Code) | | This interface represents factories of lists of int values. It
is used with the
IntListBenchmark IntListBenchmark class
for producing set objects.
author: Søren Bak version: 1.0 2003/5/1 since: 1.0 |
Method Summary | |
IntList | create(int[] elements) Creates a new instance of a list of int values initially
containing the specified elements.
Parameters: elements - the elements that the resulting list willcontain. |
create | IntList create(int[] elements)(Code) | | Creates a new instance of a list of int values initially
containing the specified elements.
Parameters: elements - the elements that the resulting list willcontain. a list of int values containing the specifiedelements. throws: NullPointerException - if elements is null. |
|
|