All Downloads are FREE. Search and download functionalities are using the official Maven repository.

factory.ArrayListFactory Maven / Gradle / Ivy

Go to download

Extension of classic Java data structures that avoid the use of Stream abstraction in favour of direct list transformation methods

The newest version!
package factory;

import structures.ArrayList;
import structures.List;

public class ArrayListFactory implements ListFactory{

	@Override
	public  List buildList() {
		return new ArrayList<>();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy