![JAR search and dependency download from the Maven repository](/logo.png)
tfw.immutable.ila.doubleila.DoubleIlaFromCastCharIla Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tfw Show documentation
Show all versions of tfw Show documentation
The FrameWork for building highly scalable and maintainable applications
The newest version!
package tfw.immutable.ila.doubleila;
import java.io.IOException;
import tfw.check.Argument;
import tfw.immutable.ila.charila.CharIla;
import tfw.immutable.ila.charila.CharIlaIterator;
import tfw.immutable.ila.charila.CharIlaSegment;
public final class DoubleIlaFromCastCharIla {
private DoubleIlaFromCastCharIla() {
// non-instantiable class
}
public static DoubleIla create(CharIla charIla, int bufferSize) {
Argument.assertNotNull(charIla, "charIla");
Argument.assertNotLessThan(bufferSize, 1, "bufferSize");
return new DoubleIlaImpl(charIla, bufferSize);
}
private static class DoubleIlaImpl extends AbstractDoubleIla {
private final CharIla charIla;
private final int bufferSize;
private DoubleIlaImpl(CharIla charIla, int bufferSize) {
this.charIla = charIla;
this.bufferSize = bufferSize;
}
@Override
protected long lengthImpl() throws IOException {
return charIla.length();
}
@Override
protected void getImpl(double[] array, int offset, long start, int length) throws IOException {
CharIlaIterator fi =
new CharIlaIterator(CharIlaSegment.create(charIla, start, length), new char[bufferSize]);
for (int ii = offset; length > 0; ii++, --length) {
array[ii] = (double) fi.next();
}
}
}
}
// AUTO GENERATED FROM TEMPLATE
© 2015 - 2025 Weber Informatics LLC | Privacy Policy