JAVA

Type of Work

Dev


Item

Support writing variable length types in Java


Explanation

"Values of variable length (VLEN) data are stored in a C structure, ""typedef struct { size_t len; void *p; } hvl_t;,"" which is not supported by the hdf-java model. Currently, hdf-java only reads VLEN data into strings and does not support writing VLEN data. It would be good to implement a Java class similar to the hvl_t C structure so that hdf-java would be able to write VLEN data to a file."


Documentation

n/a