Example usage for java.util AbstractCollection subclass-usage

List of usage examples for java.util AbstractCollection subclass-usage

Introduction

In this page you can find the example usage for java.util AbstractCollection subclass-usage.

Usage

From source file och.util.model.BoundedFifoBuffer.java

/**
 * The BoundedFifoBuffer is a very efficient implementation of
 * <code>Buffer</code> that is of a fixed size.
 * <p>
 * The removal order of a <code>BoundedFifoBuffer</code> is based on the 
 * insertion order; elements are removed in the same order in which they

From source file demo.util.model.BoundedFifoBuffer.java

/**
 * The BoundedFifoBuffer is a very efficient implementation of
 * <code>Buffer</code> that is of a fixed size.
 * <p>
 * The removal order of a <code>BoundedFifoBuffer</code> is based on the 
 * insertion order; elements are removed in the same order in which they

From source file uniol.apt.util.equations.InequalitySystem.java

/**
 * Representation of an inequality system.
 * @author Uli Schlachter
 */
public class InequalitySystem extends AbstractCollection<InequalitySystem.Inequality> {
    private final List<Inequality> inequalities = new ArrayList<>();

From source file org.apache.flink.streaming.state.NullableCircularBuffer.java

@SuppressWarnings("rawtypes")
public class NullableCircularBuffer extends AbstractCollection implements Buffer, BoundedCollection, Serializable {

    /** Serialization version */
    private static final long serialVersionUID = 5603722811189451017L;

From source file org.apache.flink.streaming.api.state.NullableCircularBuffer.java

@SuppressWarnings("rawtypes")
public class NullableCircularBuffer extends AbstractCollection implements Buffer, BoundedCollection, Serializable {

    /** Serialization version */
    private static final long serialVersionUID = 5603722811189451017L;

From source file org.springframework.boot.context.embedded.ServletContextInitializerBeans.java

/**
 * A collection {@link ServletContextInitializer}s obtained from a
 * {@link ListableBeanFactory}. Includes all {@link ServletContextInitializer} beans and
 * also adapts {@link Servlet}, {@link Filter} and certain {@link EventListener} beans.
 * <p>
 * Items are sorted so that adapted beans are top ({@link Servlet}, {@link Filter} then

From source file com.adaptris.core.WorkflowList.java

/**
 * <p>
 * Container for a collection of <code>Workflow</code>s.
 * </p>
 * 
 * @config workflow-list

From source file org.springframework.boot.web.servlet.ServletContextInitializerBeans.java

/**
 * A collection {@link ServletContextInitializer}s obtained from a
 * {@link ListableBeanFactory}. Includes all {@link ServletContextInitializer} beans and
 * also adapts {@link Servlet}, {@link Filter} and certain {@link EventListener} beans.
 * <p>
 * Items are sorted so that adapted beans are top ({@link Servlet}, {@link Filter} then

From source file securitymon.collections.BoundedFifoBuffer.java

/**
 * The BoundedFifoBuffer is a very efficient implementation of
 * <code>Buffer</code> that is of a fixed size.
 * <p>
 * The removal order of a <code>BoundedFifoBuffer</code> is based on the 
 * insertion order; elements are removed in the same order in which they

From source file ArrayDeque.java

/**
 * Resizable-array implementation of the {@link Deque} interface.  Array
 * deques have no capacity restrictions; they grow as necessary to support
 * usage.  They are not thread-safe; in the absence of external
 * synchronization, they do not support concurrent access by multiple threads.
 * Null elements are prohibited.  This class is likely to be faster than