Package hdf.hdf5lib.structs
Class H5O_info_t
- java.lang.Object
-
- hdf.hdf5lib.structs.H5O_info_t
-
- All Implemented Interfaces:
Serializable
public class H5O_info_t extends Object implements Serializable
Information struct for object (for H5Oget_info/H5Oget_info_by_name/H5Oget_info_by_idx)- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description long
atime
Access timelong
btime
Birth timelong
ctime
Change timelong
fileno
File number that object is located inlong
mtime
Modification timelong
num_attrs
Number of attributes attached to objectint
rc
Reference count of objectH5O_token_t
token
Object token in fileint
type
Basic object type (group, dataset, etc.)
-
Constructor Summary
Constructors Constructor Description H5O_info_t(long fileno, H5O_token_t token, int type, int rc, long atime, long mtime, long ctime, long btime, long num_attrs)
Constructor for data model information struct for objects
-
-
-
Field Detail
-
fileno
public long fileno
File number that object is located in
-
token
public H5O_token_t token
Object token in file
-
type
public int type
Basic object type (group, dataset, etc.)
-
rc
public int rc
Reference count of object
-
atime
public long atime
Access time
-
mtime
public long mtime
Modification time
-
ctime
public long ctime
Change time
-
btime
public long btime
Birth time
-
num_attrs
public long num_attrs
Number of attributes attached to object
-
-
Constructor Detail
-
H5O_info_t
public H5O_info_t(long fileno, H5O_token_t token, int type, int rc, long atime, long mtime, long ctime, long btime, long num_attrs)
Constructor for data model information struct for objects- Parameters:
fileno
- : File number that object is located intoken
- : Object token in filetype
- : Basic object typerc
- : Reference count of objectatime
- : Access timemtime
- : Modification timectime
- : Change timebtime
- : Birth timenum_attrs
- : Number of attributes attached to object
-
-