umontreal.iro.lecuyer.util.io.AbstractDataWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssj Show documentation
Show all versions of ssj Show documentation
SSJ is a Java library for stochastic simulation, developed under the direction of Pierre L'Ecuyer,
in the Département d'Informatique et de Recherche Opérationnelle (DIRO), at the Université de Montréal.
It provides facilities for generating uniform and nonuniform random variates, computing different
measures related to probability distributions, performing goodness-of-fit tests, applying quasi-Monte
Carlo methods, collecting (elementary) statistics, and programming discrete-event simulations with both
events and processes.
The newest version!
/*
* Class: AbstractDataWriter
* Description:
* Environment: Java
* Software: SSJ
* Copyright (C) 2001 Pierre L'Ecuyer and Université de Montréal
* Organization: DIRO, Université de Montréal
* @author David Munger
* @since August 2009
* SSJ is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License (GPL) as published by the
* Free Software Foundation, either version 3 of the License, or
* any later version.
* SSJ is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* A copy of the GNU General Public License is available at
GPL licence site.
*/
package umontreal.iro.lecuyer.util.io;
import java.io.IOException;
/**
* This abstract class implements shared functionality for data writers.
*
*/
public abstract class AbstractDataWriter implements DataWriter {
/**
* Writes a one-dimensional array of strings.
* If label is null, writes an anonymous field.
*
*/
public void write (String label, String[] a) throws IOException {
write(label, a, a.length);
}
/**
* Writes a one-dimensional array of 32-bit integers (big endian).
* If label is null, writes an anonymous field.
*
*/
public void write (String label, int[] a) throws IOException {
write(label, a, a.length);
}
/**
* Writes a one-dimensional array of 32-bit floats (big endian).
* If label is null, writes an anonymous field.
*
*/
public void write (String label, float[] a) throws IOException {
write(label, a, a.length);
}
/**
* Writes a one-dimensional array of 64-bit doubles (big endian).
* If label is null, writes an anonymous field.
*
*/
public void write (String label, double[] a) throws IOException {
write(label, a, a.length);
}
}