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

org.osgl.inject.provider.DequeProvider Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version
package org.osgl.inject.provider;

import javax.inject.Provider;
import java.util.ArrayDeque;
import java.util.Deque;

/**
 * Inject {@link Deque} type bean using {@link ArrayDeque}
 */
public class DequeProvider implements Provider> {

    public static final DequeProvider INSTANCE = new DequeProvider();

    @Override
    public Deque get() {
        return new ArrayDeque();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy