E - 3D matrix element typepublic interface Matrix3DWriter<E>
| Modifier and Type | Method and Description | 
|---|---|
<T extends Appendable>  | 
append(Matrix3D<? extends E> matrix,
      T appendable)
Append the specified 3D matrix to the specified appendable. 
 | 
void | 
write(Matrix3D<? extends E> matrix,
     File file)
Write the specified 3D matrix to the specified file. 
 | 
void | 
write(Matrix3D<? extends E> matrix,
     OutputStream outputStream)
Write the specified 3D matrix to the specified output stream. 
 | 
<T extends Appendable> T append(Matrix3D<? extends E> matrix, T appendable) throws IOException
T - extends Appendablematrix - 3D matrix to append, must not be nullappendable - appendable to append the specified 3D matrix to, must not be nullIOException - if an IO error occursvoid write(Matrix3D<? extends E> matrix, File file) throws IOException
matrix - 3D matrix to write, must not be nullfile - file to write to, must not be nullIOException - if an IO error occursvoid write(Matrix3D<? extends E> matrix, OutputStream outputStream) throws IOException
matrix - 3D matrix to write, must not be nulloutputStream - output stream to write to, must not be nullIOException - if an IO error occursCopyright (c) 2008-2013 held jointly by the individual authors. Licensed under the GNU Lesser General Public License (LGPL).