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.unboundid.scim2.common.messages.PatchRequest.java

/**
 * Class representing a SCIM 2 patch request.
 */
@Schema(id = "urn:ietf:params:scim:api:messages:2.0:PatchOp", name = "Patch Operation", description = "SCIM 2.0 Patch Operation Request")
public final class PatchRequest extends BaseScimResource implements Iterable<PatchOperation> {
    @Attribute(description = "Patch Operations")

From source file SubArray.java

public class SubArray<T> implements Iterable<T>, Iterator<T> {
    protected T[] arr;
    protected int startInclusive;
    protected int endInclusive;
    protected int currentPos;

From source file com.github.haixing_hu.ilibrary.model.DisplayNames.java

/**
 * The model of list of display names.
 *
 * @author Haixing Hu
 */
@XmlRootElement(name = "display-names")

From source file com.anrisoftware.sscontrol.core.bindings.BindAddresses.java

/**
 * Adds and removes bind addresses for the service.
 * 
 * @author Erwin Mueller, erwin.mueller@deventm.org
 * @since 1.0
 */

From source file uk.ac.ebi.atlas.solr.admin.monitor.IndexingProgress.java

@Named
@Scope("singleton")
public class IndexingProgress implements Iterable<IndexingProgress.ProcessedFile> {
    private static final Logger LOGGER = Logger.getLogger(IndexingProgress.class);

    // This list may be iterated from a different thread than the index build thread, generating a

From source file io.lonelyrobot.empires.fw.game.utils.Tree2D.java

/**
 * This is a KDTree generic object storage class that maps objects against 2D coordinates.
 * This is primarily used for object storage within the
 * 
 * @author Katharina 'spacekookie' Fey <kookie@spacekookie.de>
 *

From source file org.gbif.dwca.io.ArchiveFile.java

/**
 * This class can be used to encapsulate information about a file contained within a Darwin Core Archive. It generally
 * represents the fileType object described in the Darwin Core Archive XSD.
 *
 * @see <a href="http://rs.tdwg.org/dwc/text/tdwg_dwc_text.xsd">Darwin Core Archive XSD</a>
 */

From source file com.ibm.watson.catalyst.corpus.tfidf.sentences.Frequencies.java

@SuppressWarnings("serial")
public final class Frequencies extends Hashtable<String, Integer> implements Iterable<String> {

    public int get(String aKey) {
        String key = normalizeKey(aKey);
        Integer result = super.get(key);

From source file org.wikidata.wdtk.storage.datastructures.BitVectorImpl.java

/**
 * Default implementation of {@link BitVector}. This implementation contains an
 * array of <b>long</b>, and each <b>long</b> stores 64 bits. When more space is
 * needed, the internal array grows exponentially. This bit vector is
 * <i>flexible</i>, which means that:
 * <ol>

From source file pl.rtshadow.jtriss.benchmark.InputData.java

public class InputData implements Iterable<Row> {
    private static final char ESCAPE = '\\';
    private static final char QUOTECHAR = '\'';
    private static final char FIELD_SEPARATOR = ';';
    private static final char LIST_SEPARATOR = ',';