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 SetList.java

/*********************************************************************
 * 
 * A List that, like a Set, contains no duplicate Elements.
 * 
 * @author <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
 * @version 1998-11-23

From source file com.facebook.GraphObjectList.java

/**
 * GraphObjectList is the primary representation of a collection of graph objects in the Facebook SDK for Android.
 * It is not implemented by any concrete classes, but rather by a proxy (see the {@link GraphObjectWrapper GraphObjectWrapper}
 * class). A GraphObjectList can actually contain elements of any type, not just graph objects, but its principal
 * use in the SDK is to contain types derived from GraphObject.
 * <br/>

From source file com.facebook.model.GraphObjectList.java

/**
 * GraphObjectList is the primary representation of a collection of graph objects in the Facebook SDK for Android.
 * It is not implemented by any concrete classes, but rather by a proxy (see the {@link com.facebook.model.GraphObject.Factory Factory}
 * class). A GraphObjectList can actually contain elements of any type, not just graph objects, but its principal
 * use in the SDK is to contain types derived from GraphObject.
 * <br/>

From source file com.trk.aboutme.facebook.model.GraphObjectList.java

/**
 * GraphObjectList is the primary representation of a collection of graph objects in the Facebook SDK for Android.
 * It is not implemented by any concrete classes, but rather by a proxy (see the {@link com.trk.aboutme.facebook.model.GraphObject.Factory Factory}
 * class). A GraphObjectList can actually contain elements of any type, not just graph objects, but its principal
 * use in the SDK is to contain types derived from GraphObject.
 * <br/>

From source file m2.android.archetype.example.FacebookSdk.model.GraphObjectList.java

/**
 * GraphObjectList is the primary representation of a collection of graph objects in the Facebook SDK for Android.
 * It is not implemented by any concrete classes, but rather by a proxy (see the {@link com.facebook.model.GraphObject.Factory Factory}
 * class). A GraphObjectList can actually contain elements of any type, not just graph objects, but its principal
 * use in the SDK is to contain types derived from GraphObject.
 * <br/>

From source file com.addthis.bundle.value.ValueArray.java

@JsonDeserialize(as = DefaultArray.class)
public interface ValueArray extends ValueObject, List<ValueObject> {

    @Override
    public default TYPE getObjectType() {
        return TYPE.ARRAY;

From source file com.civprod.util.ChainListWrapper.java

/**
 *
 * @author Steven Owens
 * @param <T>
 */
public class ChainListWrapper<T> implements List<T> {

From source file com.googlecode.npuzzle.logic.astar.BinaryList.java

/**
 *
 * @author thiago
 */
public class BinaryList<E extends Comparable> implements List<E> {

From source file de.dhke.projects.cutil.collections.ExtractorList.java

/**
 * Wrapper list that supports transformed reading from
 * another list.
 * <p />
 * Can bee seen as as the "reader" variant of {@link TransformedList},
 * which transforms items <em>ADDED</em> to a list.

From source file org.bullet.value.BExpr.java

public class BExpr implements List<Object> {

    private LinkedList<Object> data;
    private CodeLoc begin;
    private CodeLoc end;