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.kii.sdk.photocolle.http.entity.mime.Header.java

/**
 * The header of an entity (see RFC 2045).
 */
public class Header implements Iterable<MinimalField> {

    private final List<MinimalField> fields;

From source file lshw.types.Capabilities.java

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

From source file io.fabric8.elasticsearch.plugin.acl.SearchGuardRoles.java

public class SearchGuardRoles
        implements Iterable<SearchGuardRoles.Roles>, ConfigurationSettings, SearchGuardACLDocument {

    public static final String ROLE_PREFIX = "gen";
    public static final String PROJECT_PREFIX = ROLE_PREFIX + "_project";
    public static final String USER_PREFIX = ROLE_PREFIX + "_user";

From source file edu.cornell.med.icb.goby.readers.FastXReader.java

/**
 * A reader for <a href="http://en.wikipedia.org/wiki/FASTA_format">FASTA</a>
 * or <a href="http://en.wikipedia.org/wiki/FASTQ_format">FASTQ</a> files.
 * This reuses the same {@link edu.cornell.med.icb.goby.readers.FastXEntry} over and
 * over for reading the file, so don't directly store it. If you need to store the
 * resultant FastXEntry object, use the {@link edu.cornell.med.icb.goby.readers.FastXEntry#clone()}

From source file edu.umn.msi.tropix.client.directory.impl.UserIterableImpl.java

public class UserIterableImpl implements Iterable<GridUser> {
    private ConcurrentHashMap<String, GridUser> gridUserMap;
    private Supplier<Multimap<String, Person>> personSupplier;

    private static class PersonFunction implements Function<Person, GridUser> {
        private final String institution;

From source file org.loklak.objects.Timeline.java

/**
 * A timeline is a structure which holds tweet for the purpose of presentation
 * There is no tweet retrieval method here, just an iterator which returns the tweets in reverse appearing order
 */
public class Timeline implements Iterable<MessageEntry> {

From source file net.sourceforge.pmd.Report.java

/**
 * A {@link Report} collects all informations during a PMD execution. This
 * includes violations, suppressed violations, metrics, error during processing
 * and configuration errors.
 */
public class Report implements Iterable<RuleViolation> {

From source file com.github.nukesparrow.htmlunit.HUQueryElements.java

/**
 *
 * @author Nuke Sparrow <nukesparrow@bitmessage.ch>
 */
public class HUQueryElements<Elem extends HtmlElement> implements Iterable<HUQueryElements<Elem>> {

From source file com.thoughtworks.go.server.domain.AgentInstances.java

public class AgentInstances implements Iterable<AgentInstance> {

    private SystemEnvironment systemEnvironment;
    private Map<String, AgentInstance> agentInstances = new ConcurrentHashMap<>();
    private AgentStatusChangeListener agentStatusChangeListener;

From source file org.diorite.nbt.NbtTagByteArray.java

/**
 * NBT type for byte array values.
 */
public class NbtTagByteArray extends NbtAbstractTag implements Iterable<Byte> {
    private static final long serialVersionUID = 0;