Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Operator (3.91 sec)

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

     */
    package org.codelibs.core.collection;
    
    import java.util.Iterator;
    
    import org.codelibs.core.exception.ClUnsupportedOperationException;
    
    /**
     * 空の {@link Iterator}です。
     *
     * @author higa
     * @param <T>
     *            反復する要素の型
     */
    public class EmptyIterator<T> implements Iterator<T> {
    
        /**
         * {@link EmptyIterator}を作成します。
         */
        public EmptyIterator() {
        }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/EmptyIterator.java

        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#hasNext()
         */
        @Override
        public boolean hasNext () {
            return false;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#next()
         */
        @Override
        public SmbResource next () {
            return null;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Oct 16 10:32:35 GMT 2018
    - 1.5K bytes
    - Viewed (0)
Back to top