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

org.mockito.internal.util.collections.Iterables Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
/*
 * Copyright (c) 2016 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.util.collections;

import java.util.Enumeration;
import java.util.LinkedList;
import java.util.List;

/**
 * Utilities for Iterables
 */
public class Iterables {

    /**
     * Converts enumeration into iterable
     */
    public static  Iterable toIterable(Enumeration in) {
        List out = new LinkedList();
        while(in.hasMoreElements()) {
            out.add(in.nextElement());
        }
        return out;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy