Contents
-
Deprecated Methods
Not implemented for compound dataset.
As of 2.4, replaced by
FileFormat.createFile(String, int)
The replacement method has an additional parameter that
controls the behavior if the file already exists. Use
FileFormat.FILE_CREATE_DELETE
as the second
argument in the replacement method to mimic the behavior
originally provided by this method.
As of 2.4, replaced by
FileFormat.createCompoundDS(String, Group, long[], long[], long[], int, String[], Datatype[], int[], Object)
The replacement method has additional parameters:
maxdims, chunks,
and
gzip
. To mimic
the behavior originally provided by this method, call the
replacement method with the following parameter list:
( name, pgroup, dims, null, null, -1,
memberNames, memberDatatypes, memberSizes, data );
As of 2.4, replaced by
FileFormat.get(String)
This static method, which as been deprecated, causes two problems:
- It can be very expensive if it is called many times or in
a loop because each call to the method creates an instance of a file.
- Since the method does not return the instance of the
file, the file cannot be closed directly and may be left open
(memory leak). The only way to close the file is through the
object returned by this method.
As of 2.4, replaced by
FileFormat.get(String)
This static method, which as been deprecated, causes two problems:
As of 2.4, replaced by
FileFormat.createInstance(String, int)
The replacement method has identical functionality and a more
descriptive name. Since
open is used elsewhere to
perform a different function this method has been deprecated.
Not for public use in the future.
Using
H5CompoundDS.create(String, Group, long[], long[], long[], int, String[], Datatype[], int[], long[][], Object)
Not for public use in the future.
Using
H5CompoundDS.create(String, Group, long[], long[], long[], int, String[], Datatype[], int[], long[][], Object)
-
Deprecated Constructors
Not for public use in the future.