public final class HDF5ObjectInformation
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
void |
checkExists() |
boolean |
equals(java.lang.Object obj) |
boolean |
exists()
Returns
true , if the link exists. |
long |
getAddress()
Returns the address of the object in the file.
|
long |
getCreationTime()
Returns the time of creation of this object (as number of seconds since start of the epoch).
|
long |
getFileNumber()
Returns the file number that the object is in.
|
java.lang.String |
getName()
Returns the name of this link in the HDF5 file (the path without the parent).
|
long |
getNumberOfAttributes()
Returns the number of attributes that is object has.
|
java.lang.String |
getParentPath()
Returns the parent of the path of this link the HDF5 file.
|
java.lang.String |
getPath()
Returns the path of this link in the HDF5 file.
|
int |
getReferenceCount()
Returns the number of references that point to this object.
|
HDF5ObjectType |
getType()
Returns the type of this link.
|
int |
hashCode() |
boolean |
isDataSet()
Returns
true , if the link is a data set. |
boolean |
isDataType()
Returns
true , if the link is a data type. |
boolean |
isGroup()
Returns
true , if the link is a group. |
public long getFileNumber()
public long getAddress()
public int getReferenceCount()
public long getCreationTime()
public long getNumberOfAttributes()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public void checkExists() throws HDF5JavaException
HDF5JavaException
- If the link does not exist.public java.lang.String getPath()
public java.lang.String getParentPath()
public java.lang.String getName()
public HDF5ObjectType getType()
public boolean exists()
true
, if the link exists.public boolean isGroup()
true
, if the link is a group.public boolean isDataSet()
true
, if the link is a data set.public boolean isDataType()
true
, if the link is a data type.