Class ListPageWithPrefixes<T>
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.collect.ForwardingCollection<E>
-
- com.google.common.collect.ForwardingList<T>
-
- org.jclouds.googlecloudstorage.domain.ListPageWithPrefixes<T>
-
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,List<T>
,ListPage<T>
public final class ListPageWithPrefixes<T> extends com.google.common.collect.ForwardingList<T> implements ListPage<T>
An immutable list that includes a token, if there is another page available.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> ListPageWithPrefixes<T>
create(List<T> items, String nextPageToken, List<String> prefixes)
protected List<T>
delegate()
String
nextPageToken()
Indicates more data is available.List<String>
prefixes()
-
Methods inherited from class com.google.common.collect.ForwardingList
add, addAll, equals, get, hashCode, indexOf, lastIndexOf, listIterator, listIterator, remove, set, standardAdd, standardAddAll, standardEquals, standardHashCode, standardIndexOf, standardIterator, standardLastIndexOf, standardListIterator, standardListIterator, standardSubList, subList
-
Methods inherited from class com.google.common.collect.ForwardingCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, standardAddAll, standardClear, standardContains, standardContainsAll, standardIsEmpty, standardRemove, standardRemoveAll, standardRetainAll, standardToArray, standardToArray, standardToString, toArray, toArray
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
create
public static <T> ListPageWithPrefixes<T> create(List<T> items, String nextPageToken, List<String> prefixes)
-
nextPageToken
@Nullable public String nextPageToken()
Description copied from interface:ListPage
Indicates more data is available.- Specified by:
nextPageToken
in interfaceListPage<T>
-
-