Package org.bytedeco.hdf5
Class CommonFG
- java.lang.Object
-
- org.bytedeco.javacpp.Pointer
-
- org.bytedeco.hdf5.CommonFG
-
- All Implemented Interfaces:
AutoCloseable
@Namespace("H5") @Properties(inherit=hdf5.class) public class CommonFG extends Pointer
\class CommonFG \brief \a CommonFG is an abstract base class of H5Group.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.bytedeco.javacpp.Pointer
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator, Pointer.ReferenceCounter
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getLocId()
For subclasses, H5File and Group, to return the correct object id, i.e.ArrayType
openArrayType(String name)
ArrayType
openArrayType(BytePointer name)
CompType
openCompType(String name)
CompType
openCompType(BytePointer name)
DataType
openDataType(String name)
DataType
openDataType(BytePointer name)
EnumType
openEnumType(String name)
EnumType
openEnumType(BytePointer name)
FloatType
openFloatType(String name)
FloatType
openFloatType(BytePointer name)
IntType
openIntType(String name)
IntType
openIntType(BytePointer name)
StrType
openStrType(String name)
StrType
openStrType(BytePointer name)
VarLenType
openVarLenType(String name)
VarLenType
openVarLenType(BytePointer name)
void
throwException(String func_name, String msg)
void
throwException(BytePointer func_name, BytePointer msg)
For subclasses, H5File and Group, to throw appropriate exception.-
Methods inherited from class org.bytedeco.javacpp.Pointer
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getDirectBufferAddress, getPointer, getPointer, getPointer, getPointer, hashCode, interruptDeallocatorThread, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, physicalBytesInaccurate, position, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zero
-
-
-
-
Constructor Detail
-
CommonFG
public CommonFG(Pointer p)
Pointer cast constructor. InvokesPointer(Pointer)
.
-
-
Method Detail
-
openDataType
@ByVal public DataType openDataType(@Cast("const char*") BytePointer name)
-
openArrayType
@ByVal public ArrayType openArrayType(@Cast("const char*") BytePointer name)
-
openCompType
@ByVal public CompType openCompType(@Cast("const char*") BytePointer name)
-
openEnumType
@ByVal public EnumType openEnumType(@Cast("const char*") BytePointer name)
-
openIntType
@ByVal public IntType openIntType(@Cast("const char*") BytePointer name)
-
openFloatType
@ByVal public FloatType openFloatType(@Cast("const char*") BytePointer name)
-
openStrType
@ByVal public StrType openStrType(@Cast("const char*") BytePointer name)
-
openVarLenType
@ByVal public VarLenType openVarLenType(@Cast("const char*") BytePointer name)
-
openVarLenType
@ByVal public VarLenType openVarLenType(String name)
-
getLocId
@Cast("hid_t") public long getLocId()
For subclasses, H5File and Group, to return the correct object id, i.e. file or group id.
-
throwException
public void throwException(@StdString BytePointer func_name, @StdString BytePointer msg)
For subclasses, H5File and Group, to throw appropriate exception.
-
throwException
public void throwException(@StdString String func_name, @StdString String msg)
-
-