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 uk.ac.diamond.scisoft.analysis.rcp.inspector.AxisSelection.java

/**
 * Class to hold a list of axis names and dataset from which an axis can be selected
 */
public class AxisSelection extends InspectorProperty implements Iterable<String> {
    class AxisSelData implements Comparable<AxisSelData> {
        private boolean selected;

From source file com.ocpsoft.pretty.faces.util.ServiceLoader.java

/**
 * This class handles looking up service providers on the class path. It
 * implements the <a href="http://java.sun.com/javase/6/docs/technotes/guides/jar/jar.html#Service%20Provider"
 * >Service Provider section of the JAR File Specification</a>.
 * 
 * The Service Provider programmatic lookup was not specified prior to Java 6 so

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

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

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

/**
 * Additional nbt type, added by diorite, it will break minecraft compatybility, use with caution. <br>
 * NBT type for arrays of String values.
 */
public class NbtTagStringArray extends NbtAbstractTag implements Iterable<String> {
    private static final long serialVersionUID = 0;

From source file raptor.chess.PriorityMoveList.java

public final class PriorityMoveList<Move> implements Iterable<Move> {
    private List<Move> highPriorityMoves = new ArrayList<Move>(GameConstants.MAX_LEGAL_MOVES);
    private List<Move> lowPriorityMoves = new ArrayList<Move>(GameConstants.MAX_LEGAL_MOVES);

    public void appendHighPriority(Move move) {
        highPriorityMoves.add(move);

From source file com.unboundid.scim2.common.messages.ListResponse.java

/**
 * Class representing a SCIM 2 list response.
 *
 * @param <T> The type of the returned resources.
 */
@Schema(id = "urn:ietf:params:scim:api:messages:2.0:ListResponse", name = "List Response", description = "SCIM 2.0 List Response")

From source file com.github.jessemull.microflexdouble.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 r.lang.LogicalVector.java

public class LogicalVector extends AbstractAtomicVector implements Iterable<Logical> {
    public static final String TYPE_NAME = "logical";
    public static final Vector.Type VECTOR_TYPE = new LogicalType();
    public static final LogicalVector EMPTY = new LogicalVector();

    public static int NA = IntVector.NA;

From source file com.github.jessemull.microflexinteger.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 com.github.jessemull.microflexbigdecimal.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