Example usage for java.lang Iterable interface-usage

List of usage examples for java.lang Iterable interface-usage

Introduction

In this page you can find the example usage for java.lang Iterable interface-usage.

Usage

From source file org.commonjava.maven.cartographer.dto.GraphComposition.java

public class GraphComposition implements Iterable<GraphDescription> {

    private GraphCalculation.Type calculation;

    private List<GraphDescription> graphs;

From source file org.echocat.jomon.runtime.i18n.ResourceBundles.java

@NotThreadSafe
public class ResourceBundles implements Iterable<Entry<Locale, ResourceBundle>>, Localizer {

    private static final Comparator<Locale> COMPARATOR = new Comparator<Locale>() {
        @Override
        public int compare(Locale o1, Locale o2) {

From source file org.apache.hadoop.hbase.util.PairOfSameType.java

/**
 * A generic, immutable class for pairs of objects both of type <code>T</code>.
 * @param <T>
 * @see Pair if Types differ.
 */
@InterfaceAudience.Public

From source file no.ntnu.osnap.social.models.Model.java

/**
 * oSNAP generic class for all social objects.
 *
 * @author Emanuele 'lemrey' Di Santo
 */
public class Model implements Iterable, Parcelable {

From source file de.dhke.projects.cutil.collections.iterator.ChainIterable.java

/**
 *
 * @param <E> 
 * @author Peter Wullinger <peter.wullinger@uni-bamberg.de>
 */
public class ChainIterable<E> implements Iterable<E> {

From source file org.optaplanner.core.impl.constructionheuristic.greedyFit.selector.GreedyPlanningEntitySelector.java

/**
 * Determines the order in which the planning entities are fit into the solution
 */
public class GreedyPlanningEntitySelector implements Iterable<Object>, GreedySolverPhaseLifecycleListener {

    private List<PlanningEntitySelector> planningEntitySelectorList;

From source file it.crs4.seal.read_sort.FastaChecksummer.java

public class FastaChecksummer implements Iterable<FastaChecksummer.ChecksumEntry> {
    public static class ChecksumEntry {
        private String name;
        private String checksum;

        public ChecksumEntry(String name, String checksum) {

From source file com.mobeelizer.java.sync.MobeelizerInputDataIterable.java

public class MobeelizerInputDataIterable implements Iterable<MobeelizerJsonEntity> {

    private final MobeelizerInputData inputData;

    public MobeelizerInputDataIterable(final MobeelizerInputData inputData) {
        this.inputData = inputData;

From source file com.shigengyu.common.ListHashMap.java

public class ListHashMap<K, V> implements Iterable<Entry<K, List<V>>> {

    public static <K, V> ListHashMap<K, V> newListHashMap() {
        return new ListHashMap<K, V>();
    }

From source file org.apache.hama.bsp.message.bundle.POJOMessageBundle.java

public class POJOMessageBundle<M extends Writable> implements BSPMessageBundle<M>, Iterable<M> {

    protected static final Log LOG = LogFactory.getLog(POJOMessageBundle.class);

    protected HashMap<String, List<M>> messages = new HashMap<String, List<M>>();
    protected HashMap<String, Class<M>> classCache = new HashMap<String, Class<M>>();