net.sf.saxon.ma.parray.ImmList1 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.tree.jiter.MonoIterator;
import java.util.Iterator;
/**
* Implementation of an immutable list of length 1 (one)
* @param the type of the list element
*/
public class ImmList1 extends ImmList {
private final E member;
public ImmList1(E member) {
this.member = member;
}
@Override
public E get(int index) {
if (index == 0) {
return member;
} else {
throw outOfBounds(index, 1);
}
}
@Override
public int size() {
return 1;
}
@Override
public boolean isEmpty() {
return false;
}
@Override
public ImmList replace(int index, E member) {
if (index == 0) {
return new ImmList1<>(member);
} else {
throw outOfBounds(index, 1);
}
}
@Override
public ImmList insert(int index, E member) {
if (index == 0) {
return new ImmList2<>(new ImmList1<>(member), this);
} else if (index == 1) {
return new ImmList2<>(this, new ImmList1<>(member));
} else {
throw outOfBounds(index,1);
}
}
@Override
public ImmList append(E member) {
return new ImmList2<>(this, new ImmList1<>(member)).rebalance();
}
@Override
public ImmList appendList(ImmList members) {
return new ImmList2<>(this, members).rebalance();
}
@Override
public ImmList remove(int index) {
if (index == 0) {
return ImmList.empty();
} else {
throw outOfBounds(index, 1);
}
}
@Override
public ImmList subList(int start, int end) {
if (start != 0) {
throw outOfBounds(start, 1);
}
if (end == 0) {
return ImmList.empty();
} else if (end == 1) {
return this;
} else {
throw outOfBounds(end, 1);
}
}
@Override
public Iterator iterator() {
return new MonoIterator<>(member);
}
}