net.sf.saxon.ma.parray.ImmList0 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 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();
}
}