Example usage for java.util Collection interface-usage

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

Introduction

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

Usage

From source file com.searchbox.core.dm.DefaultCollection.java

public class DefaultCollection implements Collection, CollectionWithFields, SearchableCollection {

    @SearchAttribute
    protected String name;

    @SearchAttribute

From source file org.exoplatform.social.core.identity.IdentityResult.java

public class IdentityResult implements Collection<Identity> {
    private final long offset;
    private final long limit;
    private final long totalSize;
    private long skip;
    private String[] ids;

From source file com.antsdb.saltedfish.nosql.ConcurrentLinkedList.java

/**
 * 
 * @author wgu0
 */
public class ConcurrentLinkedList<T> implements Iterable<T>, Collection<T> {
    AtomicReference<Node<T>> head = new AtomicReference<ConcurrentLinkedList.Node<T>>();

From source file org.jactr.core.utils.collections.CachedCollection.java

/**
 * a collection that permits asynchronous changes to its contents without
 * affecting calls to getCachedCopy() Even though it is synchronized, care must
 * be taken to synchronize the collection while iterating over it
 * 
 * @author developer

From source file de.dhke.projects.cutil.collections.cow.CopyOnWriteMultiMapValueCollection.java

/**
 *
 * @param <K>
 * @param <V>
 * @param <M>
 * <p/>

From source file us.mn.state.health.lims.common.valueholder.EnumValueImpl.java

public class EnumValueImpl implements EnumValue, Collection {
    private String enumName = null;

    private Map map = null;

    private List list = null;

From source file org.latticesoft.util.resource.dao.GenericDAO.java

public class GenericDAO implements Collection {

    private static Map map = new HashMap();
    private static final Log log = LogFactory.getLog(GenericDAO.class);
    private boolean closeConnection = true;
    private DataSource dataSource = null;

From source file com.marvelution.hudson.plugins.apiv2.cache.issue.IssuesCache.java

/**
 * @author <a href="mailto:markrekveld@marvelution.com">Mark Rekveld</a>
 *
 * @since 4.4.0
 */
public class IssuesCache implements Iterable<IssueCache>, Collection<IssueCache> {

From source file com.marvelution.hudson.plugins.apiv2.cache.activity.ActivitiesCache.java

/**
 * @author <a href="mailto:markrekveld@marvelution.com">Mark Rekveld</a>
 *
 * @since 4.4.0
 */
public class ActivitiesCache implements Iterable<ActivityCache>, Collection<ActivityCache> {

From source file org.apache.flink.runtime.checkpoint.StateObjectCollection.java

/**
 * This class represents a generic collection for {@link StateObject}s. Being a state object itself, it delegates
 * {@link #discardState()} to all contained state objects and computes {@link #getStateSize()} as sum of the state
 * sizes of all contained objects.
 *
 * @param <T> type of the contained state objects.