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

com.alibaba.toolkit.util.collection.EnumerationIterator Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
/*
 * Copyright (c) 2002-2012 Alibaba Group Holding Limited.
 * All rights reserved.
 *
 * 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.alibaba.toolkit.util.collection;

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

/**
 * 将Enumeration转换成Iterator的适配器.
 *
 * @author Michael Zhou
 * @version $Id: EnumerationIterator.java,v 1.1 2003/07/03 07:26:16 baobao Exp $
 */
public class EnumerationIterator implements Iterator {
    private Enumeration enumeration;
    private Object      lastReturned;

    /**
     * 创建一个EnumerationIterator.
     *
     * @param enumeration 被适配的Enumeration
     */
    public EnumerationIterator(Enumeration enumeration) {
        this.enumeration = enumeration;
    }

    /**
     * 取得被适配的Enumeration.
     *
     * @return 被适配的Enumeration
     */
    public Enumeration getEnumeration() {
        return enumeration;
    }

    /**
     * 是否有下一个元素.
     *
     * @return 如果有下一个元素, 则返回true
     */
    public boolean hasNext() {
        return enumeration.hasMoreElements();
    }

    /**
     * 取得下一个元素.
     *
     * @return 下一个元素
     */
    public Object next() {
        return lastReturned = enumeration.nextElement();
    }

    /** 删除最近返回的元素, 不支持. */
    public void remove() {
        throw new UnsupportedOperationException("remove() method is not supported");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy