Package org.jclouds.route53.domain
Class ResourceRecordSetIterable
- java.lang.Object
-
- com.google.common.collect.FluentIterable<T>
-
- org.jclouds.collect.IterableWithMarker<ResourceRecordSet>
-
- org.jclouds.route53.domain.ResourceRecordSetIterable
-
- All Implemented Interfaces:
Iterable<ResourceRecordSet>
public class ResourceRecordSetIterable extends IterableWithMarker<ResourceRecordSet>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ResourceRecordSetIterable.Builder
static class
ResourceRecordSetIterable.NextRecord
If the results were truncated, this holds the position of the next item.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResourceRecordSetIterable.Builder
builder()
boolean
equals(Object obj)
int
hashCode()
Iterator<ResourceRecordSet>
iterator()
com.google.common.base.Optional<Object>
nextMarker()
If there is a next marker, then the set is incomplete and you should issue another command to retrieve the rest, setting the optionmarker
to this valuecom.google.common.base.Optional<ResourceRecordSetIterable.NextRecord>
nextRecord()
present when the list is not truncatedString
toString()
-
Methods inherited from class com.google.common.collect.FluentIterable
allMatch, anyMatch, append, append, concat, concat, concat, concat, concat, contains, copyInto, cycle, filter, filter, first, firstMatch, from, from, from, get, index, isEmpty, join, last, limit, of, of, size, skip, stream, toArray, toList, toMap, toMultiset, toSet, toSortedList, toSortedSet, transform, transformAndConcat, uniqueIndex
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
nextRecord
public com.google.common.base.Optional<ResourceRecordSetIterable.NextRecord> nextRecord()
present when the list is not truncated
-
nextMarker
public com.google.common.base.Optional<Object> nextMarker()
Description copied from class:IterableWithMarker
If there is a next marker, then the set is incomplete and you should issue another command to retrieve the rest, setting the optionmarker
to this value- Specified by:
nextMarker
in classIterableWithMarker<ResourceRecordSet>
- Returns:
- next marker, or absent if list is complete
-
iterator
public Iterator<ResourceRecordSet> iterator()
-
toString
public String toString()
- Overrides:
toString
in classcom.google.common.collect.FluentIterable<ResourceRecordSet>
-
builder
public static ResourceRecordSetIterable.Builder builder()
-
-