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