List of usage examples for java.util LinkedList subclass-usage
From source file com.cyberway.issue.queue.MemQueue.java
/** An in-memory implementation of a {@link Queue}. * * @author Gordon Mohr * */ public class MemQueue<T> extends LinkedList<T> implements Queue<T> {
From source file com.esri.geoportal.commons.csw.client.impl.DcList.java
/** * The Class DcList. List that has key value pairs. The keys * can be duplicate and will produce a list on get(key) */ public class DcList extends LinkedList<DcList.Value> {
From source file org.phenotips.data.SimpleNamedData.java
/**
* Class for representing {@link PatientData patient data} organized as a list of simple key-value pairs, where the key
* is a string (name) and the value is an object of a specific type. This list is immutable, and the each pair in the
* list is also immutable; but the immutability of the values is not guaranteed, although recommended.
*
* @param <T> the type of data being managed by this component; since this is a list of key-value pairs, this refers to
From source file com.codelanx.codelanxlib.util.cache.PackingQueue.java
/**
* Represents a queue which flushes all of its elements upon reaching a maximum
* size
*
* @since 0.1.0
* @author 1Rogue
From source file org.apache.hedwig.filter.PipelineFilter.java
/** * A filter filters messages in pipeline. */ public class PipelineFilter extends LinkedList<ServerMessageFilter> implements ServerMessageFilter { @Override
From source file org.phenotips.data.internal.controller.SimpleNamedData.java
/**
* Class for representing {@link PatientData patient data} organized as a list of simple key-value pairs, where the key
* is a string (name) and the value is an object of a specific type. This list is immutable, and the each pair in the
* list is also immutable; but the immutability of the values is not guaranteed, although recommended.
*
* @param <T> the type of data being managed by this component; since this is a list of key-value pairs, this refers to
From source file com.yahoo.bard.webservice.util.SimplifiedIntervalList.java
/** * A simplified interval list is a list of intervals, ordered by time, expressed in as few intervals as possible * (i.e. adjacent and overlapping intervals are combined into a single interval). */ public class SimplifiedIntervalList extends LinkedList<Interval> {
From source file ubic.pubmedgate.interactions.ConnectionList.java
public class ConnectionList extends LinkedList<Connection> { private static Log log = LogFactory.getLog(ConnectionList.class.getName()); static InteractionPredicateNegationReader negationFilter; static { try { negationFilter = new InteractionPredicateNegationReader();
From source file eu.annocultor.path.Path.java
/**
*
* Represents a (simplified) XPath expression, represented as a slash-concatenation of path elements, of the form
*
* <code>element-name[@attribute='value' and @attribute='value']</code>
*
From source file eu.europeana.enrichment.path.Path.java
/**
*
* Represents a (simplified) XPath expression, represented as a
* slash-concatenation of path elements, of the form
*
* <code>element-name[@attribute='value' and @attribute='value']</code>