001/*
002 *  Copyright 2001-2010 Stephen Colebourne
003 *
004 *  Licensed under the Apache License, Version 2.0 (the "License");
005 *  you may not use this file except in compliance with the License.
006 *  You may obtain a copy of the License at
007 *
008 *      http://www.apache.org/licenses/LICENSE-2.0
009 *
010 *  Unless required by applicable law or agreed to in writing, software
011 *  distributed under the License is distributed on an "AS IS" BASIS,
012 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 *  See the License for the specific language governing permissions and
014 *  limitations under the License.
015 */
016package org.joda.primitives.iterator;
017
018/**
019 * Defines an iterator over primitive <code>int</code> values.
020 * <p>
021 * This interface extends {@link java.util.Iterator Iterator} allowing
022 * seamless integration with other APIs.
023 * 
024 * @author Stephen Colebourne
025 * @author Jason Tiscione
026 * @version CODE GENERATED
027 * @since 1.0
028 */
029public interface IntIterator extends PrimitiveIterator<Integer> {
030    // This file is CODE GENERATED. Do not change manually.
031
032    // Mandatory operations
033    //-----------------------------------------------------------------------
034    /**
035     * Gets the next value from the iterator
036     *
037     * @return the next available value
038     * @throws NoSuchElementException if there are no more values available
039     */
040    int nextInt();
041
042}