[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Returns the datatype class identifier.
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function getClass ( _ typeId As H5DataTypeId _ ) As H5TClass |
| C# |
|---|
public static H5T.H5TClass getClass ( H5DataTypeId typeId ) |
| C++ |
|---|
public: static H5TClass getClass ( H5DataTypeId^ typeId ) |
Parameters
- typeId (H5DataTypeId)
- Identifier of datatype to query.
Remarks
H5Tget_class returns the datatype class identifier.
Valid class identifiers, as defined in H5Tpublic.h, are:
- H5T_INTEGER
- H5T_FLOAT
- H5T_TIME
- H5T_STRING
- H5T_BITFIELD
- H5T_OPAQUE
- H5T_COMPOUND
- H5T_REFERENCE
- H5T_ENUM
- H5T_VLEN
- H5T_ARRAY
Exceptions
| Exception | Condition |
|---|---|
| HDF5DotNet.H5TgetClassException | throws H5TgetClassException on failure. |