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

net.sf.saxon.ma.parray.ImmList0 Maven / Gradle / Ivy

There is a newer version: 12.5
Show newest version
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2022 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

package net.sf.saxon.ma.parray;

import net.sf.saxon.transpile.CSharpInjectMembers;

import java.util.Collections;
import java.util.Iterator;

/**
 * Implementation of an immutable empty list
 * @param  the (nominal) type of the list elements
 */

@CSharpInjectMembers(code = {
        "public static  ImmList0 getInstance() { return new ImmList0(); }"
})

public class ImmList0 extends ImmList {

    private final static ImmList0 INSTANCE = new ImmList0();

    public static  ImmList0 getInstance() {
        return INSTANCE;
    }

    private ImmList0() {
    }

    @Override
    public E get(int index) {
        throw outOfBounds(index, 0);
    }

    @Override
    public int size() {
        return 0;
    }

    @Override
    public boolean isEmpty() {
        return true;
    }

    @Override
    public ImmList replace(int index, E member) {
        throw outOfBounds(index, 0);
    }

    @Override
    public ImmList insert(int index, E member) {
        if (index == 0) {
            return new ImmList1<>(member);
        } else {
            throw outOfBounds(index, 0);
        }
    }

    @Override
    public ImmList append(E member) {
        return new ImmList1<>(member);
    }

    @Override
    public ImmList appendList(ImmList members) {
        return members;
    }

    @Override
    public ImmList remove(int index) {
        throw outOfBounds(index, 0);
    }

    @Override
    public ImmList subList(int start, int end) {
        if (start == 0 && end == 0) {
            return this;
        } else {
            throw outOfBounds(0, 0);
        }
    }

    @Override
    public Iterator iterator() {
        return Collections.emptyIterator();
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy