blob: 26ec95cb845758a52477b8ea9e5e15b7a9362c5f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.chemistry.opencmis.client.api;
import java.util.Iterator;
/**
* Iterable for CMIS collections that allows ability to skip to specific
* position or return a subcollection.
*
* @param <T>
* the type of the items
*/
public interface ItemIterable<T> extends Iterable<T> {
/**
* Skips to position within CMIS collection.
*
* @param position
*
* @return iterable whose starting point is the specified skip to position.
* This iterable <em>may</em> be the same as {@code this}
*/
ItemIterable<T> skipTo(long position);
/**
* Gets an iterable for the current sub collection within the CMIS
* collection using default maximum number of items.
*
* @return iterable for current page
*/
ItemIterable<T> getPage();
/**
* Gets an iterable for the current sub collection within the CMIS
* collection.
*
* @param maxNumItems
* maximum number of items the sub collection will contain
*
* @return iterable for current page
*/
ItemIterable<T> getPage(int maxNumItems);
Iterator<T> iterator();
/**
* Returns the number of items fetched for the current page.
*
* @return number of items for currently fetched collection
*/
long getPageNumItems();
/**
* Returns whether the repository contains additional items beyond the page
* of items already fetched.
*
* @return true => further page requests will be made to the repository
*/
boolean getHasMoreItems();
/**
* Returns the total number of items. If the repository knows the total
* number of items in a result set, the repository SHOULD include the number
* here. If the repository does not know the number of items in a result
* set, this parameter SHOULD not be set. The value in the parameter MAY NOT
* be accurate the next time the client retrieves the result set or the next
* page in the result set.
*
* @return total number of items or (-1)
*/
long getTotalNumItems();
}