List of usage examples for java.lang Iterable interface-usage
From source file org.intermine.common.swing.table.GenericTableModel.java
/** * A generic and extended version of the AbstractTableModel. * * @param <T> The type of items stored in this model. */ public abstract class GenericTableModel<T> extends AbstractTableModel implements Iterable<T> {
From source file de.huberlin.wbi.cfjava.data.Alist.java
public class Alist<T> implements Iterable<T> { private class AlistIterator implements Iterator<T> { private Alist<T> cursor;
From source file org.haedus.datatypes.phonetic.Sequence.java
/** * @author Samantha Fiona Morrigan McCabe */ public class Sequence implements Iterable<Segment> { public static final Sequence EMPTY_SEQUENCE = new Sequence(Segment.EMPTY_SEGMENT);
From source file com.opengamma.id.ExternalIdBundle.java
/**
* An immutable bundle of external identifiers.
* <p>
* A bundle allows multiple {@link ExternalId external identifiers} to be grouped together when they all refer to the same conceptual object. For example, a Reuters RIC and Bloomberg Ticker might both
* refer to the same equity.
* <p>
From source file com.thoughtworks.studios.journey.jql.Tuple.java
public class Tuple implements Iterable<Tuple> { private final JQLValue[] values; public Tuple(int size) { this.values = new JQLValue[size]; }
From source file com.pandich.dropwizard.curator.PropertySources.java
public final class PropertySources implements Iterable<Map.Entry<Class, ConcurrentMap<String, PropertySources.PropertySource>>> { public static enum PropertySource { ZOOKEEPER("ZooKeeper"), DROPWIZARD("DropWizard"), ABSENT("Absent");
From source file com.autentia.poda.FilesCollection.java
public class FilesCollection implements Iterable<FileMetadata> { private static final Logger logger = LoggerFactory.getLogger(FilesCollection.class); private static final IOFileFilter NOT_SYMBOLIC_LINK = new AbstractFileFilter() { @Override public boolean accept(File file) {
From source file com.intelligentsia.dowsers.entity.meta.MetaAttributeCollection.java
/**
* MetaAttributeCollection is a {@link ImmutableCollection} of
* {@link MetaAttribute}.
*
* @author <a href="mailto:jguibert@intelligents-ia.com" >Jerome Guibert</a>
*/
From source file hudson.plugins.clearcase.model.Versions.java
public class Versions implements Iterable<Version> { private Collection<Version> versions = new ArrayList<Version>(); private Versions() { }
From source file org.echocat.jomon.spring.ContextLoadThreadGroup.java
public class ContextLoadThreadGroup implements ApplicationContextAware, Iterable<Thread>, UncaughtExceptionHandler { private final Map<Thread, List<Throwable>> _failedThreads = synchronizedMap( new HashMap<Thread, List<Throwable>>()); private final Set<Thread> _threads = synchronizedSet(new HashSet<Thread>());