HDF5 1.14.5
API Reference
|
Functions | |
static synchronized native long | H5VLregister_connector_by_name (String connector_name, long vipl_id) throws HDF5LibraryException |
static synchronized native long | H5VLregister_connector_by_value (int connector_value, long vipl_id) throws HDF5LibraryException |
static synchronized native boolean | H5VLis_connector_registered_by_name (String name) throws HDF5LibraryException |
static synchronized native boolean | H5VLis_connector_registered_by_value (int connector_value) throws HDF5LibraryException |
static synchronized native long | H5VLget_connector_id (long object_id) throws HDF5LibraryException |
static synchronized native long | H5VLget_connector_id_by_name (String name) throws HDF5LibraryException |
static synchronized native long | H5VLget_connector_id_by_value (int connector_value) throws HDF5LibraryException |
static synchronized native String | H5VLget_connector_name (long object_id) throws HDF5LibraryException |
static synchronized native void | H5VLclose (long connector_id) throws HDF5LibraryException |
static synchronized native void | H5VLunregister_connector (long connector_id) throws HDF5LibraryException |
|
static |
H5VLclose closes a VOL connector ID.
connector_id | IN: Identifier of the connector. |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLget_connector_id retrieves the ID for a registered VOL connector for a given object.
object_id | IN: Identifier of the object. |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLget_connector_id_by_name retrieves the ID for a registered VOL connector.
name | IN: name of the connector. |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLget_connector_id_by_value retrieves the ID for a registered VOL connector.
connector_value | IN: value of the connector. |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLget_connector_name returns the connector name for the VOL associated with the object or file ID.
object_id | IN: Identifier of the object. |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLis_connector_registered_by_name tests whether a VOL class has been registered.
name | IN: name of the connector. |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLis_connector_registered_by_value tests whether a VOL class has been registered.
connector_value | IN: value of the connector. |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLregister_connector_by_name registers a new VOL connector as a member of the virtual object layer class.
connector_name | IN: name of the connector. |
vipl_id | IN: VOL initialization property list which must be created with H5Pcreate(H5P_VOL_INITIALIZE) (or H5P_DEFAULT). |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLregister_connector_by_value registers a new VOL connector as a member of the virtual object layer class.
connector_value | IN: value of the connector. |
vipl_id | IN: VOL initialization property list which must be created with H5Pcreate(H5P_VOL_INITIALIZE) (or H5P_DEFAULT). |
HDF5LibraryException | Error from the HDF5 Library. |
|
static |
H5VLunregister_connector removes a VOL connector ID from the library.
connector_id | IN: Identifier of the connector. |
HDF5LibraryException | Error from the HDF5 Library. |