@Deprecated
public interface IHDF5EnumBasicReader
Modifier and Type | Method and Description |
---|---|
HDF5EnumerationType |
getDataSetEnumType(java.lang.String dataSetPath)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationValueArray |
getEnumArrayAttribute(java.lang.String objectPath,
java.lang.String attributeName)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
java.lang.String[] |
getEnumArrayAttributeAsString(java.lang.String objectPath,
java.lang.String attributeName)
Deprecated.
Use
getEnumArrayAttribute(String, String) instead and call
HDF5EnumerationValueArray.toStringArray() . |
java.lang.Iterable<HDF5DataBlock<HDF5EnumerationValueArray>> |
getEnumArrayNaturalBlocks(java.lang.String objectPath)
Deprecated.
Use the corresponding method in
IHDF5LegacyReader.enums() instead. |
java.lang.Iterable<HDF5DataBlock<HDF5EnumerationValueArray>> |
getEnumArrayNaturalBlocks(java.lang.String objectPath,
HDF5EnumerationType enumType)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationValue |
getEnumAttribute(java.lang.String objectPath,
java.lang.String attributeName)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
<T extends java.lang.Enum<T>> |
getEnumAttribute(java.lang.String objectPath,
java.lang.String attributeName,
java.lang.Class<T> enumClass)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
java.lang.String |
getEnumAttributeAsString(java.lang.String objectPath,
java.lang.String attributeName)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationType |
getEnumType(java.lang.String dataTypeName)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationType |
getEnumType(java.lang.String dataTypeName,
java.lang.String[] values)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationType |
getEnumType(java.lang.String dataTypeName,
java.lang.String[] values,
boolean check)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationType |
getEnumTypeForObject(java.lang.String dataSetPath)
Deprecated.
Use
getDataSetEnumType(String) instead. |
HDF5EnumerationValue |
readEnum(java.lang.String objectPath)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
<T extends java.lang.Enum<T>> |
readEnum(java.lang.String objectPath,
java.lang.Class<T> enumClass)
Deprecated.
Reads an
Enum value from the data set objectPath. |
HDF5EnumerationValue |
readEnum(java.lang.String objectPath,
HDF5EnumerationType enumType)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationValueArray |
readEnumArray(java.lang.String objectPath)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
<T extends java.lang.Enum<T>> |
readEnumArray(java.lang.String objectPath,
java.lang.Class<T> enumClass)
Deprecated.
Reads an
Enum value array from the data set objectPath. |
HDF5EnumerationValueArray |
readEnumArray(java.lang.String objectPath,
HDF5EnumerationType enumType)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
java.lang.String[] |
readEnumArrayAsString(java.lang.String objectPath)
Deprecated.
Reads an
Enum array (of rank 1) from the data set objectPath. |
HDF5EnumerationValueArray |
readEnumArrayBlock(java.lang.String objectPath,
HDF5EnumerationType enumType,
int blockSize,
long blockNumber)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationValueArray |
readEnumArrayBlock(java.lang.String objectPath,
int blockSize,
long blockNumber)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationValueArray |
readEnumArrayBlockWithOffset(java.lang.String objectPath,
HDF5EnumerationType enumType,
int blockSize,
long offset)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
HDF5EnumerationValueArray |
readEnumArrayBlockWithOffset(java.lang.String objectPath,
int blockSize,
long offset)
Deprecated.
Use the corresponding method in
IHDF5Reader.enumeration() instead. |
java.lang.String |
readEnumAsString(java.lang.String objectPath)
Deprecated.
Reads an
Enum value from the data set objectPath. |
@Deprecated HDF5EnumerationType getEnumType(java.lang.String dataTypeName)
IHDF5Reader.enumeration()
instead.dataTypeName
- The name of the enumeration in the HDF5 file.@Deprecated HDF5EnumerationType getEnumType(java.lang.String dataTypeName, java.lang.String[] values) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.dataTypeName
- The name of the enumeration in the HDF5 file.values
- The values of the enumeration.HDF5JavaException
- If the data type exists and is not compatible with the
values provided.@Deprecated HDF5EnumerationType getEnumType(java.lang.String dataTypeName, java.lang.String[] values, boolean check) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.dataTypeName
- The name of the enumeration in the HDF5 file.values
- The values of the enumeration.check
- If true
and if the data type already exists, check whether it is
compatible with the values provided.HDF5JavaException
- If check = true
, the data type exists and is not
compatible with the values provided.@Deprecated HDF5EnumerationType getEnumTypeForObject(java.lang.String dataSetPath)
getDataSetEnumType(String)
instead.dataSetPath
- The name of data set to get the enumeration type for.@Deprecated HDF5EnumerationType getDataSetEnumType(java.lang.String dataSetPath)
IHDF5Reader.enumeration()
instead.dataSetPath
- The name of data set to get the enumeration type for.@Deprecated java.lang.String getEnumAttributeAsString(java.lang.String objectPath, java.lang.String attributeName) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.enum
attribute named attributeName from the data set
objectPath.objectPath
- The name (including path information) of the data set object in the file.attributeName
- The name of the attribute to read.HDF5JavaException
- If the attribute is not an enum type.@Deprecated HDF5EnumerationValue getEnumAttribute(java.lang.String objectPath, java.lang.String attributeName) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.enum
attribute named attributeName from the data set
objectPath.objectPath
- The name (including path information) of the data set object in the file.attributeName
- The name of the attribute to read.HDF5JavaException
- If the attribute is not an enum type.@Deprecated <T extends java.lang.Enum<T>> T getEnumAttribute(java.lang.String objectPath, java.lang.String attributeName, java.lang.Class<T> enumClass) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.enum
attribute named attributeName from the data set
objectPath.objectPath
- The name (including path information) of the data set object in the file.attributeName
- The name of the attribute to read.enumClass
- the Enum
class to represent the values of.HDF5JavaException
- If the attribute is not an enum type.@Deprecated java.lang.String[] getEnumArrayAttributeAsString(java.lang.String objectPath, java.lang.String attributeName) throws HDF5JavaException
getEnumArrayAttribute(String, String)
instead and call
HDF5EnumerationValueArray.toStringArray()
.enum
array attribute named attributeName from the data set
objectPath.objectPath
- The name (including path information) of the data set object in the file.attributeName
- The name of the attribute to read.HDF5JavaException
- If the attribute is not an enum type.@Deprecated HDF5EnumerationValueArray getEnumArrayAttribute(java.lang.String objectPath, java.lang.String attributeName) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.enum
array attribute named attributeName from the data set
objectPath.objectPath
- The name (including path information) of the data set object in the file.attributeName
- The name of the attribute to read.HDF5JavaException
- If the attribute is not an enum type.java.lang.String readEnumAsString(java.lang.String objectPath) throws HDF5JavaException
Enum
value from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.HDF5JavaException
- If the objectPath is not an enum type.@Deprecated HDF5EnumerationValue readEnum(java.lang.String objectPath) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.Enum
value from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.HDF5JavaException
- If the objectPath is not of enumType.<T extends java.lang.Enum<T>> T readEnum(java.lang.String objectPath, java.lang.Class<T> enumClass) throws HDF5JavaException
Enum
value from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.enumClass
- the Enum
class to represent the values of.HDF5JavaException
- If the objectPath is not of enumType or if
enumClass is incompatible with the HDF5 enumeration type of
objectPath.@Deprecated HDF5EnumerationValue readEnum(java.lang.String objectPath, HDF5EnumerationType enumType) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.Enum
value from the data set objectPath.
This method is faster than readEnum(String)
if the HDF5EnumerationType
is
already available.
objectPath
- The name (including path information) of the data set object in the file.enumType
- The enum type in the HDF5 file.HDF5JavaException
- If the objectPath is not of enumType.@Deprecated HDF5EnumerationValueArray readEnumArray(java.lang.String objectPath, HDF5EnumerationType enumType) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.Enum
value from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.enumType
- The enumeration type of this array.HDF5JavaException
- If the objectPath is not of enumType.@Deprecated HDF5EnumerationValueArray readEnumArray(java.lang.String objectPath) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.Enum
value array from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.HDF5JavaException
- If the objectPath is not of enumType.<T extends java.lang.Enum<T>> T[] readEnumArray(java.lang.String objectPath, java.lang.Class<T> enumClass) throws HDF5JavaException
Enum
value array from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.enumClass
- the Enum
class to represent the values of.HDF5JavaException
- If the objectPath is not of enumType.java.lang.String[] readEnumArrayAsString(java.lang.String objectPath) throws HDF5JavaException
Enum
array (of rank 1) from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.HDF5JavaException
- If the objectPath is not an enum type.@Deprecated HDF5EnumerationValueArray readEnumArrayBlock(java.lang.String objectPath, int blockSize, long blockNumber)
IHDF5Reader.enumeration()
instead.Enum
value array from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.blockSize
- The block size (this will be the return value of the
HDF5EnumerationValueArray.getLength()
returned if the data set is long
enough).blockNumber
- The number of the block to read (starting with 0, offset: multiply with
blockSize).@Deprecated HDF5EnumerationValueArray readEnumArrayBlock(java.lang.String objectPath, HDF5EnumerationType enumType, int blockSize, long blockNumber)
IHDF5Reader.enumeration()
instead.Enum
value array from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.enumType
- The enumeration type of this array.blockSize
- The block size (this will be the return value of the
HDF5EnumerationValueArray.getLength()
returned if the data set is long
enough).blockNumber
- The number of the block to read (starting with 0, offset: multiply with
blockSize).@Deprecated HDF5EnumerationValueArray readEnumArrayBlockWithOffset(java.lang.String objectPath, int blockSize, long offset)
IHDF5Reader.enumeration()
instead.Enum
value array from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.blockSize
- The block size (this will be the return value of the
HDF5EnumerationValueArray.getLength()
returned if the data set is long
enough).offset
- The offset of the block in the data set to start reading from (starting with
0).@Deprecated HDF5EnumerationValueArray readEnumArrayBlockWithOffset(java.lang.String objectPath, HDF5EnumerationType enumType, int blockSize, long offset)
IHDF5Reader.enumeration()
instead.Enum
value array from the data set objectPath.objectPath
- The name (including path information) of the data set object in the file.enumType
- The enumeration type of this array.blockSize
- The block size (this will be the return value of the
HDF5EnumerationValueArray.getLength()
returned if the data set is long
enough).offset
- The offset of the block in the data set to start reading from (starting with
0).@Deprecated java.lang.Iterable<HDF5DataBlock<HDF5EnumerationValueArray>> getEnumArrayNaturalBlocks(java.lang.String objectPath) throws HDF5JavaException
IHDF5LegacyReader.enums()
instead.objectPath
- The name (including path information) of the data set object in the file.HDF5JavaException
- If the data set is not of rank 1.HDF5DataBlock
@Deprecated java.lang.Iterable<HDF5DataBlock<HDF5EnumerationValueArray>> getEnumArrayNaturalBlocks(java.lang.String objectPath, HDF5EnumerationType enumType) throws HDF5JavaException
IHDF5Reader.enumeration()
instead.objectPath
- The name (including path information) of the data set object in the file.enumType
- The enumeration type of this array.HDF5JavaException
- If the data set is not of rank 1.HDF5DataBlock