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 com.github.jessemull.microflexbiginteger.plate.WellList.java

/**
 * Internal data structure to hold lists of well indices for well sets or plates.
 * The list of well indices prevents redundant data storage for the wells
 * within a well set or plate object.
 * 
 * @author Jesse L. Mull

From source file org.apache.bookkeeper.mledger.impl.ManagedCursorContainer.java

/**
 * Contains all the cursors for a ManagedLedger.
 *
 * <p/>The goal is to always know the slowest consumer and hence decide which is the oldest ledger we need to keep.
 *
 * <p/>This data structure maintains a list and a map of cursors. The map is used to relate a cursor name with an entry

From source file greenapi.core.model.resources.net.NetworkInterfaces.java

public class NetworkInterfaces implements Serializable, Iterable<NetworkInterface> {

    /**
     * Serial code version <code>serialVersionUID</code>.
     */
    private static final long serialVersionUID = 5912953555860802136L;

From source file org.pentaho.di.core.util.KeyValueSet.java

/**
 * @author <a href="mailto:thomas.hoedl@aschauer-edv.at">Thomas Hoedl(asc042)</a>
 *
 */
public class KeyValueSet implements Iterable<KeyValue<?>>, Serializable {

From source file org.springframework.data.mapping.PropertyPath.java

/**
 * Abstraction of a {@link PropertyPath} of a domain class.
 * 
 * @author Oliver Gierke
 */
public class PropertyPath implements Iterable<PropertyPath> {

From source file com.ryan.ryanreader.jsonwrap.JsonBufferedObject.java

/**
 * A JSON object, which may be partially or fully received.
 */
public final class JsonBufferedObject extends JsonBuffered implements Iterable<Map.Entry<String, JsonValue>> {

    private final HashMap<String, JsonValue> properties = new HashMap<String, JsonValue>();

From source file lshw.types.Configurations.java

/**
 * <p>
 * Java class for configinfo complex type.
 * 
 * <p>
 * The following schema fragment specifies the expected content contained within this class.

From source file org.keycloak.adapters.saml.rotation.SamlDescriptorPublicKeyLocator.java

/**
 * This class defines a {@link KeyLocator} that looks up public keys and certificates in IdP's
 * SAML descriptor (i.e. http://{host}/auth/realms/{realm}/protocol/saml/descriptor).
 *
 * Based on {@code JWKPublicKeyLocator}.
 *

From source file org.quantumbadger.redreader.jsonwrap.JsonBufferedObject.java

/**
 * A JSON object, which may be partially or fully received.
 */
public final class JsonBufferedObject extends JsonBuffered implements Iterable<Map.Entry<String, JsonValue>> {

    private final HashMap<String, JsonValue> properties = new HashMap<>();

From source file com.flexive.rest.client.RemoteDataSimple.java

/**
 * Offers a convenient query-based API for the response body represented as a {@link RemoteMapSimple}.
 *
 * @author Daniel Lichtenberger (daniel.lichtenberger@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at)
 * @version $Rev$
 */