public final class SciListFactory
extends java.lang.Object
Constructor and Description |
---|
SciListFactory() |
Modifier and Type | Method and Description |
---|---|
static <T extends java.lang.Comparable<T>> |
create(java.lang.Class<T> type,
int size)
Creates a smart list instance.
|
static <T extends java.lang.Comparable<T>> |
createSmart(java.lang.Class<T> type,
int size)
Creates a smart list instance.
|
public static <T extends java.lang.Comparable<T>> ISciList<T> create(java.lang.Class<T> type, int size)
T
- The type of items to be placed in list.type
- The type of items to be placed in list.size
- The init size of list.public static <T extends java.lang.Comparable<T>> ISmartList<T> createSmart(java.lang.Class<T> type, int size)
T
- The type of items to be placed in list.type
- The type of items to be placed in list.size
- The init size of list.