import net.openhft.collections.HugeCollections;
import net.openhft.collections.HugeArrayList;
public class MyArrayListExample {
public static void main(String[] args) {
HugeArrayList<String> hugeArrayList = HugeCollections.newArrayLis
t("path/to/data/directory", 1000, String.class);
hugeArrayList.add("Hello");
hugeArrayList.add("World");
}
}