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

webit.script.lang.iter.MapKeyIter Maven / Gradle / Ivy

// Copyright (c) 2013, Webit Team. All Rights Reserved.
package webit.script.lang.iter;

import java.util.Iterator;
import java.util.Map;
import webit.script.lang.KeyIter;

/**
 *
 * @author zqq
 */
public final class MapKeyIter extends AbstractIter implements KeyIter {

    private final Iterator iterator;
    private Map.Entry current;

    @SuppressWarnings("unchecked")
    public MapKeyIter(Map map) {
        this.iterator = map.entrySet().iterator();
    }

    public Object value() {
        return this.current.getValue();
    }

    @Override
    protected Object _next() {
        return (this.current = iterator.next()).getKey();
    }

    public boolean hasNext() {
        return this.iterator.hasNext();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy