summaryrefslogtreecommitdiffstats
path: root/java/examples/datasets/H5Ex_D_Chunk.java
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-02-28 15:26:26 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-02-28 15:26:26 (GMT)
commitdfad2e1b079ca690ea144ff4a0fa006ea05ede3e (patch)
treee5c5b3922f4b4e0ada8a591110a044d215e783f0 /java/examples/datasets/H5Ex_D_Chunk.java
parentfd268dca96ea76ef0ec4425434502343ee2055d7 (diff)
parent8d909320bf752baa32c13c0d4e2a29985a0e923b (diff)
downloadhdf5-dfad2e1b079ca690ea144ff4a0fa006ea05ede3e.zip
hdf5-dfad2e1b079ca690ea144ff4a0fa006ea05ede3e.tar.gz
hdf5-dfad2e1b079ca690ea144ff4a0fa006ea05ede3e.tar.bz2
Merge pull request #315 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '8d909320bf752baa32c13c0d4e2a29985a0e923b': Added virtual to list mpich module file is in env var
Diffstat (limited to 'java/examples/datasets/H5Ex_D_Chunk.java')
-rw-r--r--java/examples/datasets/H5Ex_D_Chunk.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/java/examples/datasets/H5Ex_D_Chunk.java b/java/examples/datasets/H5Ex_D_Chunk.java
index 7f02e5a..b12b227 100644
--- a/java/examples/datasets/H5Ex_D_Chunk.java
+++ b/java/examples/datasets/H5Ex_D_Chunk.java
@@ -44,7 +44,7 @@ public class H5Ex_D_Chunk {
// Values for the status of space allocation
enum H5D_layout {
- H5D_LAYOUT_ERROR(-1), H5D_COMPACT(0), H5D_CONTIGUOUS(1), H5D_CHUNKED(2), H5D_NLAYOUTS(3);
+ H5D_LAYOUT_ERROR(-1), H5D_COMPACT(0), H5D_CONTIGUOUS(1), H5D_CHUNKED(2), H5D_VIRTUAL(3), H5D_NLAYOUTS(4);
private static final Map<Integer, H5D_layout> lookup = new HashMap<Integer, H5D_layout>();
static {
@@ -250,6 +250,9 @@ public class H5Ex_D_Chunk {
case H5D_CHUNKED:
System.out.println("H5D_CHUNKED");
break;
+ case H5D_VIRTUAL:
+ System.out.println("H5D_VIRTUAL");
+ break;
case H5D_LAYOUT_ERROR:
break;
case H5D_NLAYOUTS: