Interface Changes
- All Superinterfaces:
Collection<ChangedItem>
,Iterable<ChangedItem>
,List<ChangedItem>
Represents collection changes.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates that results is truncated.Returns the synchronization token provided by the server.void
setMoreResults
(boolean moreResults) Indicates that results is truncated.void
setNewSyncToken
(String newSyncToken) Sets the synchronization token provided by the server.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 Details
-
setNewSyncToken
Sets the synchronization token provided by the server.- Parameters:
newSyncToken
- The new synchronization token provided by the server.
-
getNewSyncToken
String getNewSyncToken()Returns the synchronization token provided by the server.- Returns:
- The synchronization token provided by the server.
-
setMoreResults
void setMoreResults(boolean moreResults) Indicates that results is truncated.A server MAY limit the number of member URLs in a response, for example, to limit the amount of work expended in processing a request, or as the result of an explicit limit set by the client.
- Parameters:
moreResults
- If there are more results.
-
getMoreResults
boolean getMoreResults()Indicates that results is truncated.A server MAY limit the number of member URLs in a response, for example, to limit the amount of work expended in processing a request, or as the result of an explicit limit set by the client.
- Returns:
- True if there are more results false otherwise.
-