Example usage for java.util List interface-usage

List of usage examples for java.util List interface-usage

Introduction

In this page you can find the example usage for java.util List interface-usage.

Usage

From source file de.innovationgate.webgate.api.templates.LazyBeanList.java

/**
 * Implements a "lazy" list of retrieved beans.
 * This list can first be filled with the keys of beans. When beans are used, they are retrieved by their keys automatically.
 * However beans that never get used will not be retrieved, saving performance and resources. 
 */
public class LazyBeanList implements List, WGResultSetCore {

From source file org.omnaest.utils.structure.collection.list.ListAbstract.java

/**
 * This abstract list implementation offers the basic methods like addAll, removeAll, retainAll, etc. which rely only on other
 * list methods and not on any underlying structure. This list offers automatic {@link ListIterator}, {@link Iterator} and sublist
 * which are backed to the given list. <br>
 * <br>
 * Additionally the {@link Deque} interface is completely implemented as well.

From source file com.replaymod.replaystudio.collection.PacketList.java

/**
 * A list for PacketData allowing efficient modification.
 * The difference to LinkedList is that it always ensures correct packet ordering unless specified otherwise.
 * This list is not thread-safe.
 */
public class PacketList implements List<PacketData> {

From source file org.springframework.integration.history.MessageHistory.java

/**
 * @author Mark Fisher
 * @author Artem Bilan
 * @since 2.0
 */
@SuppressWarnings("serial")

From source file org.kuali.coeus.common.budget.framework.query.QueryList.java

public final class QueryList<E> implements List<E>, RandomAccess, Cloneable, Serializable {

    private static final long serialVersionUID = -3215265492607686197L;
    private static final org.apache.commons.logging.Log LOG = org.apache.commons.logging.LogFactory
            .getLog(QueryList.class);
    //using delegation to make it easier to swap out underlying implementation

From source file com.vk.sdkweb.api.model.VKList.java

/**
 * Universal data list for VK API.
 * This class is not thread-safe.
 * @param <T> type of stored values.
 * @see <a href="http://vk.com/dev/list">http://vk.com/dev/list</a>
 */

From source file org.apache.jackrabbit.core.state.ChildNodeEntries.java

/**
 * <code>ChildNodeEntries</code> represents an insertion-ordered
 * collection of <code>ChildNodeEntry</code>s that also maintains
 * the index values of same-name siblings on insertion and removal.
 * <p/>
 * <code>ChildNodeEntries</code> also provides an unmodifiable

From source file org.apache.jackrabbit.core.state.ChildNodeEntries.java

/**
 * <code>ChildNodeEntries</code> represents an insertion-ordered
 * collection of <code>ChildNodeEntry</code>s that also maintains
 * the index values of same-name siblings on insertion and removal.
 * <p/>
 * <code>ChildNodeEntries</code> also provides an unmodifiable

From source file com.vk.sdk.api.model.VKList.java

/**
 * Universal data list for VK API.
 * This class is not thread-safe.
 * @param <T> type of stored values.
 * @see <a href="http://vk.com/dev/list">http://vk.com/dev/list</a>
 */

From source file org.codelibs.fess.util.QueryResponseList.java

public class QueryResponseList implements List<Map<String, Object>> {

    private static final Logger logger = LoggerFactory.getLogger(QueryResponseList.class);

    protected static final String ELLIPSIS = "...";