org.psjava.goods.GoodQueueFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of psjava Show documentation
Show all versions of psjava Show documentation
Problem Solving Library for Java
The newest version!
package org.psjava.goods;
import org.psjava.ds.queue.QueueFactory;
import org.psjava.ds.queue.QueueFactoryUsingDeque;
public class GoodQueueFactory {
private static QueueFactory instance = QueueFactoryUsingDeque.getInstance(GoodDequeFactory.getInstance());
public static QueueFactory getInstance() {
return instance;
}
private GoodQueueFactory() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy