All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alee.utils.collection.EmptyIterator Maven / Gradle / Ivy

The newest version!
/*
 * This file is part of WebLookAndFeel library.
 *
 * WebLookAndFeel library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * WebLookAndFeel library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with WebLookAndFeel library.  If not, see .
 */

package com.alee.utils.collection;

import com.alee.api.annotations.NotNull;
import com.alee.api.annotations.Nullable;

import java.util.Iterator;

/**
 * {@link Iterator} implementation that has no elements.
 *
 * @param  elements type
 * @author Mikle Garin
 */
public final class EmptyIterator implements Iterator
{
    /**
     * {@link EmptyIterator} singleton instance.
     */
    @Nullable
    private static EmptyIterator instance;

    /**
     * Returns {@link EmptyIterator} instance.
     *
     * @param  elements type
     * @return {@link EmptyIterator} instance
     */
    @NotNull
    public static  EmptyIterator instance ()
    {
        if ( instance == null )
        {
            synchronized ( EmptyIterator.class )
            {
                if ( instance == null )
                {
                    instance = new EmptyIterator ();
                }
            }
        }
        return instance;
    }

    /**
     * We do not want anyone to construct {@link EmptyIterator} directly, use {@link #instance()} instead.
     */
    private EmptyIterator ()
    {
        super ();
    }

    @Override
    public boolean hasNext ()
    {
        return false;
    }

    @Nullable
    @Override
    public E next ()
    {
        throw new UnsupportedOperationException ( "EmptyIterator does not contain any elements" );
    }

    @Override
    public void remove ()
    {
        throw new UnsupportedOperationException ( "EmptyIterator does not contain any elements" );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy