Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IteratorEnumeration (0.07 sec)

  1. src/main/java/org/codelibs/core/collection/EmptyEnumeration.java

    package org.codelibs.core.collection;
    
    import java.util.Enumeration;
    
    /**
     * An empty {@link Enumeration}.
     *
     * @author higa
     * @param <T> the type of elements
     */
    public class EmptyEnumeration<T> extends IteratorEnumeration<T> {
    
        /**
         * Creates an {@link EmptyEnumeration}.
         */
        public EmptyEnumeration() {
            super(new EmptyIterator<T>());
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 993 bytes
    - Viewed (0)
Back to top