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 net.shipilev.fjptrace.util.PairedList.java

public class PairedList implements Iterable<PairedList.Pair> {

    private long[] k1;
    private long[] k2;

    int size;

From source file de.kasoki.jfeedly.model.Categories.java

/**
 * Representation model of "/v3/categories" response from the API
 * @author Christopher Kaster
 */
public class Categories implements Iterable<Category> {
    private ArrayList<Category> categories;

From source file com.github.pemapmodder.pocketminegui.utils.Ring.java

public class Ring<T> implements Iterable<T> {
    private T[] array;
    /**
     * This is an array offset
     */
    private int start = 0;

From source file org.webguitoolkit.components.menu.TableMenuItemMap.java

/**
 * Helper Class to hold the menu entries
 *
 * @author BK
 */
public class TableMenuItemMap implements Iterable<String> {

From source file com.igormaznitsa.jhexed.swing.editor.filecontainer.FileContainer.java

public class FileContainer implements Iterable<FileContainerSection> {

    private final List<FileContainerSection> sections;

    private static final int MAGIC = 0xCCAA01BB;
    private static final int FORMAT_VERSION = 0x0100;

From source file com.stratio.cassandra.index.schema.Columns.java

/**
 * A sorted list of CQL3 logic {@link Column}s.
 *
 * @author Andres de la Pena <adelapena@stratio.com>
 */
public class Columns implements Iterable<Column> {

From source file org.mytms.common.data.Slice.java

/**
 * A slice of data that indicates whether there's a next or previous slice available. Allows to obtain a
 * {@link Pageable} to request a previous or next {@link Slice}.
 *
 * @author Oliver Gierke
 * @since 1.8

From source file com.cloudera.crunch.materialize.MaterializableIterable.java

public class MaterializableIterable<E> implements Iterable<E> {

    private static final Log LOG = LogFactory.getLog(MaterializableIterable.class);

    private final Pipeline pipeline;
    private final ReadableSourceTarget<E> sourceTarget;

From source file org.kuali.student.poc.jsonparser.json.SimpleJsonMap.java

/**
 * Represents a JSON map
 *
 * @author Kuali Student Team
 */
public class SimpleJsonMap extends BaseJsonObject implements Iterable<Pair<String, BaseJsonObject>> {

From source file de.joinout.criztovyl.tools.json.iterator.JSONArrayIterator.java

/**
 * A abstract class for iterating over {@link JSONArray}s.<br>
 * You only have to define wich JSONArray#get you want to use.<br>
 * Array is available via {@link #getArray()} and index via {@link #index()}.<br>
 * As example with strings #next() would be:<br>
 *