List of usage examples for java.lang Iterable interface-usage
From source file org.owasp.dependencycheck.dependency.EvidenceCollection.java
/** * Used to maintain a collection of Evidence. * * @author Jeremy Long <jeremy.long@owasp.org> */ public class EvidenceCollection implements Iterable<Evidence> {
From source file org.archive.nutchwax.ArcReader.java
/**
* <p>
* Reader of both ARC and WARC format archive files. This is not a
* general-purpose archive file reader, but is written specifically
* for NutchWAX. It's possible that this could become a
* general-purpose archive file reader, but for now, consider it
From source file org.archive.nutchwax.tools.ArcReader.java
/**
* <p>
* Reader of both ARC and WARC format archive files. This is not a
* general-purpose archive file reader, but is written specifically
* for NutchWAX. It's possible that this could become a
* general-purpose archive file reader, but for now, consider it
From source file org.diorite.nbt.NbtTagFloatArray.java
/** * Additional nbt type, added by diorite, it will break minecraft compatybility, use with caution. <br> * NBT type for arrays of float values. */ public class NbtTagFloatArray extends NbtAbstractTag implements Iterable<Float> { private static final long serialVersionUID = 0;
From source file org.diorite.nbt.NbtTagShortArray.java
/** * Additional nbt type, added by diorite, it will break minecraft compatybility, use with caution. <br> * NBT type for arrays of short values. */ public class NbtTagShortArray extends NbtAbstractTag implements Iterable<Short> { private static final long serialVersionUID = 0;
From source file r.lang.IntVector.java
public class IntVector extends AbstractAtomicVector implements Iterable<Integer> { public static final String TYPE_NAME = "integer"; public static final int TYPE_CODE = 13; public static final Vector.Type VECTOR_TYPE = new IntType(); public static final IntVector EMPTY = new IntVector();
From source file com.shigengyu.hyperion.core.WorkflowStateSet.java
@Immutable public class WorkflowStateSet implements Iterable<WorkflowState>, DataSerializable { public static WorkflowStateSet empty() { return new WorkflowStateSet(); }
From source file org.diorite.nbt.NbtTagDoubleArray.java
/** * Additional nbt type, added by diorite, it will break minecraft compatybility, use with caution. <br> * NBT type for arrays of double values. */ public class NbtTagDoubleArray extends NbtAbstractTag implements Iterable<Double> { private static final long serialVersionUID = 0;
From source file org.diorite.nbt.NbtTagLongArray.java
/** * Additional nbt type, added by diorite, it will break minecraft compatybility, use with caution. <br> * NBT type for arrays of long values. */ public class NbtTagLongArray extends NbtAbstractTag implements Iterable<Long> { private static final long serialVersionUID = 0;
From source file net.daum.clix.springframework.data.rest.client.repository.RestRepositories.java
/**
* Wrapper class to access repository instances obtained from a
* {@link ListableBeanFactory}.
*
* @author Oliver Gierke
*/