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

com.phloc.commons.collections.iterate.EnumerationFromIterator Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
/**
 * Copyright (C) 2006-2015 phloc systems
 * http://www.phloc.com
 * office[at]phloc[dot]com
 *
 * Licensed 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 com.phloc.commons.collections.iterate;

import java.util.Enumeration;
import java.util.Iterator;

import javax.annotation.Nonnull;

import com.phloc.commons.ValueEnforcer;
import com.phloc.commons.string.ToStringGenerator;

/**
 * This is a helper class to create an {@link Enumeration} from an existing
 * {@link Iterator}
 * 
 * @author Philip Helger
 * @param 
 *        Type to be enumerated
 */
public final class EnumerationFromIterator  implements Enumeration 
{
  private final Iterator  m_aIter;

  public EnumerationFromIterator (@Nonnull final Iterable  aCont)
  {
    this (aCont.iterator ());
  }

  public EnumerationFromIterator (@Nonnull final Iterator  aIter)
  {
    m_aIter = ValueEnforcer.notNull (aIter, "Iterator");
  }

  public boolean hasMoreElements ()
  {
    return m_aIter.hasNext ();
  }

  public ELEMENTTYPE nextElement ()
  {
    return m_aIter.next ();
  }

  @Override
  public String toString ()
  {
    return new ToStringGenerator (this).append ("iter", m_aIter).toString ();
  }

  @Nonnull
  public static  EnumerationFromIterator  create (@Nonnull final Iterator  aIter)
  {
    return new EnumerationFromIterator  (aIter);
  }

  @Nonnull
  public static  EnumerationFromIterator  create (@Nonnull final Iterable  aCont)
  {
    return new EnumerationFromIterator  (aCont);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy