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

apoc.coll.SetBackedList Maven / Gradle / Ivy

There is a newer version: 2025.02.0
Show newest version
/*
 * Copyright (c) "Neo4j"
 * Neo4j Sweden AB [http://neo4j.com]
 *
 * This file is part of Neo4j.
 *
 * 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 apoc.coll;

import java.util.*;

/**
 * @author mh
 * @since 10.04.16
 */
public class SetBackedList extends AbstractSequentialList implements Set {

    private final Set set;

    public SetBackedList(Set set) {
        this.set = set;
    }

    @Override
    public int size() {
        return set.size();
    }

    public ListIterator listIterator(int index) {
        return new ListIterator() {
            Iterator it = set.iterator();
            T current = null;
            int idx = 0;
            {
                moveTo(index);
            }

            @Override
            public boolean hasNext() {
                return it.hasNext();
            }

            @Override
            public T next() {
                idx++;
                return current = it.next();
            }

            @Override
            public boolean hasPrevious() {
                return idx > 0;
            }

            @Override
            public T previous() {
                if (!hasPrevious()) throw new NoSuchElementException();
                T tmp = current;
                moveTo(idx-1);
                return tmp;
            }

            private void moveTo(int pos) {
                Iterator it2 = set.iterator();
                T value = null;
                int i=0; while (i++ spliterator() {
        return set.spliterator();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy