blob: 12f5d46094f8ddb9047dba903ef5f3dda9a361f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.tmf.core.analysis.callsite;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Callsite iterator
*
* @author Matthew Khouzam
* @since 5.2
*/
public interface ITmfCallsiteIterator extends Iterator<TimeCallsite> {
/**
* Returns {@code true} if the backwards iteration has more elements. (In
* other words, returns {@code true} if {@link #previous} would return an
* element rather than throwing an exception.)
*
* @return {@code true} if the backwards iteration has more elements
*/
boolean hasPrevious();
/**
* Returns the previous element in the iteration.
*
* @return the previous element in the iteration
* @throws NoSuchElementException
* if the iteration has no more elements
*/
TimeCallsite previous();
}