diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-03-15 19:40:27 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-03-15 19:40:27 (GMT) |
commit | 7aa4eb1b04014f1ad7e1c857ca6509aeeb6c0ae7 (patch) | |
tree | 503ba66c8f4b5039ff67c68957109745b6543bc6 /java/src/hdf | |
parent | 02a9433fa0aac34ae81ab5f0d5b97a7934881215 (diff) | |
parent | 57e468aba7ba66bba1f9a1736450ed4295a6c25d (diff) | |
download | hdf5-7aa4eb1b04014f1ad7e1c857ca6509aeeb6c0ae7.zip hdf5-7aa4eb1b04014f1ad7e1c857ca6509aeeb6c0ae7.tar.gz hdf5-7aa4eb1b04014f1ad7e1c857ca6509aeeb6c0ae7.tar.bz2 |
Merge pull request #967 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '57e468aba7ba66bba1f9a1736450ed4295a6c25d':
Change max value
Chnage values so test will fail when new latest is added
Exception changed
Exception type changed
Correct constant var names
Java constants for new lib verbounds values
Diffstat (limited to 'java/src/hdf')
-rw-r--r-- | java/src/hdf/hdf5lib/HDF5Constants.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/src/hdf/hdf5lib/HDF5Constants.java b/java/src/hdf/hdf5lib/HDF5Constants.java index 3e43ba2..eb4055d 100644 --- a/java/src/hdf/hdf5lib/HDF5Constants.java +++ b/java/src/hdf/hdf5lib/HDF5Constants.java @@ -206,7 +206,11 @@ public class HDF5Constants { public static final int H5F_CLOSE_SEMI = H5F_CLOSE_SEMI(); public static final int H5F_CLOSE_STRONG = H5F_CLOSE_STRONG(); public static final int H5F_CLOSE_WEAK = H5F_CLOSE_WEAK(); + public static final int H5F_LIBVER_ERROR = H5F_LIBVER_ERROR(); public static final int H5F_LIBVER_EARLIEST = H5F_LIBVER_EARLIEST(); + public static final int H5F_LIBVER_V18 = H5F_LIBVER_V18(); + public static final int H5F_LIBVER_V110 = H5F_LIBVER_V110(); + public static final int H5F_LIBVER_NBOUNDS = H5F_LIBVER_NBOUNDS(); public static final int H5F_LIBVER_LATEST = H5F_LIBVER_LATEST(); public static final int H5F_OBJ_ALL = H5F_OBJ_ALL(); public static final int H5F_OBJ_ATTR = H5F_OBJ_ATTR(); @@ -999,8 +1003,16 @@ public class HDF5Constants { private static native final int H5F_CLOSE_WEAK(); + private static native final int H5F_LIBVER_ERROR(); + private static native final int H5F_LIBVER_EARLIEST(); + private static native final int H5F_LIBVER_V18(); + + private static native final int H5F_LIBVER_V110(); + + private static native final int H5F_LIBVER_NBOUNDS(); + private static native final int H5F_LIBVER_LATEST(); private static native final int H5F_OBJ_ALL(); |