summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/HDF5Constants.java
blob: 55b6f4be913fdcbac88c73006ea31605b64a1665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the COPYING file, which can be found at the root of the source code       *
 * distribution tree, or in https://www.hdfgroup.org/licenses.               *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

package hdf.hdf5lib;

import hdf.hdf5lib.structs.H5O_token_t;

/**
 * @page HDF5CONST Constants and Enumerated Types
 * This class contains C constants and enumerated types of HDF5 library. The
 * values of these constants are obtained from the library by calling
 * the JNI function jconstant, where jconstant is used for any of the private constants
 * which start their name with "H5" need to be converted.
 * <P>
 * <B>Do not edit this file!</b>
 *
 * @see @ref HDF5LIB
 */
public class HDF5Constants {
    static { H5.loadH5Lib(); }

    // /////////////////////////////////////////////////////////////////////////
    // Get the HDF5 constants from the library //
    // /////////////////////////////////////////////////////////////////////////

    /** Special parameters for szip compression */
    public static final int H5_SZIP_MAX_PIXELS_PER_BLOCK = H5_SZIP_MAX_PIXELS_PER_BLOCK();
    /** Special parameters for szip compression */
    public static final int H5_SZIP_NN_OPTION_MASK = H5_SZIP_NN_OPTION_MASK();
    /** Special parameters for szip compression */
    public static final int H5_SZIP_EC_OPTION_MASK = H5_SZIP_EC_OPTION_MASK();
    /** Special parameters for szip compression */
    public static final int H5_SZIP_ALLOW_K13_OPTION_MASK = H5_SZIP_ALLOW_K13_OPTION_MASK();
    /** Special parameters for szip compression */
    public static final int H5_SZIP_CHIP_OPTION_MASK = H5_SZIP_CHIP_OPTION_MASK();
    /** indices on links, unknown index type */
    public static final int H5_INDEX_UNKNOWN = H5_INDEX_UNKNOWN();
    /** indices on links, index on names */
    public static final int H5_INDEX_NAME = H5_INDEX_NAME();
    /** indices on links, index on creation order */
    public static final int H5_INDEX_CRT_ORDER = H5_INDEX_CRT_ORDER();
    /** indices on links, number of indices defined */
    public static final int H5_INDEX_N = H5_INDEX_N();
    /** Common iteration orders, Unknown order */
    public static final int H5_ITER_UNKNOWN = H5_ITER_UNKNOWN();
    /** Common iteration orders, Increasing order */
    public static final int H5_ITER_INC = H5_ITER_INC();
    /** Common iteration orders, Decreasing order */
    public static final int H5_ITER_DEC = H5_ITER_DEC();
    /** Common iteration orders, No particular order, whatever is fastest */
    public static final int H5_ITER_NATIVE = H5_ITER_NATIVE();
    /** Common iteration orders, Number of iteration orders */
    public static final int H5_ITER_N = H5_ITER_N();
    /** The version of the H5AC_cache_config_t in use */
    public static final int H5AC_CURR_CACHE_CONFIG_VERSION = H5AC_CURR_CACHE_CONFIG_VERSION();
    /** The maximum length of the trace file path */
    public static final int H5AC_MAX_TRACE_FILE_NAME_LEN = H5AC_MAX_TRACE_FILE_NAME_LEN();
    /**
     *    When metadata_write_strategy is set to this value, only process
     *    zero is allowed to write dirty metadata to disk.  All other
     *    processes must retain dirty metadata until they are informed at
     *    a sync point that the dirty metadata in question has been written
     *    to disk.
     */
    public static final int H5AC_METADATA_WRITE_STRATEGY_PROCESS_ZERO_ONLY =
        H5AC_METADATA_WRITE_STRATEGY_PROCESS_ZERO_ONLY();
    /**
     *    In the distributed metadata write strategy, process zero still makes
     *    the decisions as to what entries should be flushed, but the actual
     *    flushes are distributed across the processes in the computation to
     *    the extent possible.
     */
    public static final int H5AC_METADATA_WRITE_STRATEGY_DISTRIBUTED =
        H5AC_METADATA_WRITE_STRATEGY_DISTRIBUTED();
    /** Don't attempt to increase the size of the cache automatically */
    public static final int H5C_incr_off = H5C_incr_off();
    /**
     *  Attempt to increase the size of the cache
     *              whenever the average hit rate over the last epoch drops
     *              below the value supplied in the lower_hr_threshold
     *              field
     */
    public static final int H5C_incr_threshold = H5C_incr_threshold();
    /** Don't perform flash increases in the size of the cache */
    public static final int H5C_flash_incr_off = H5C_flash_incr_off();
    /** increase the current maximum cache size by x * flash_multiple less any free space in the cache */
    public static final int H5C_flash_incr_add_space = H5C_flash_incr_add_space();
    /** Don't attempt to decrease the size of the cache automatically */
    public static final int H5C_decr_off = H5C_decr_off();
    /**
     *  Attempt to decrease the size of the cache
     *              whenever the average hit rate over the last epoch rises
     *              above the value supplied in the upper_hr_threshold
     *              field
     */
    public static final int H5C_decr_threshold = H5C_decr_threshold();
    /**
     *  At the end of each epoch, search the cache for
     *              entries that have not been accessed for at least the number
     *              of epochs specified in the epochs_before_eviction field, and
     *              evict these entries
     */
    public static final int H5C_decr_age_out = H5C_decr_age_out();
    /**
     *  Same as age_out, but we only
     *              attempt to reduce the cache size when the hit rate observed
     *              over the last epoch exceeds the value provided in the
     *              upper_hr_threshold field
     */
    public static final int H5C_decr_age_out_with_threshold = H5C_decr_age_out_with_threshold();
    /** */
    public static final int H5D_CHUNK_IDX_BTREE = H5D_CHUNK_IDX_BTREE();
    /** */
    public static final int H5D_ALLOC_TIME_DEFAULT = H5D_ALLOC_TIME_DEFAULT();
    /** */
    public static final int H5D_ALLOC_TIME_EARLY = H5D_ALLOC_TIME_EARLY();
    /** */
    public static final int H5D_ALLOC_TIME_ERROR = H5D_ALLOC_TIME_ERROR();
    /** */
    public static final int H5D_ALLOC_TIME_INCR = H5D_ALLOC_TIME_INCR();
    /** */
    public static final int H5D_ALLOC_TIME_LATE = H5D_ALLOC_TIME_LATE();
    /** */
    public static final int H5D_FILL_TIME_ERROR = H5D_FILL_TIME_ERROR();
    /** */
    public static final int H5D_FILL_TIME_ALLOC = H5D_FILL_TIME_ALLOC();
    /** */
    public static final int H5D_FILL_TIME_NEVER = H5D_FILL_TIME_NEVER();
    /** */
    public static final int H5D_FILL_TIME_IFSET = H5D_FILL_TIME_IFSET();
    /** */
    public static final int H5D_FILL_VALUE_DEFAULT = H5D_FILL_VALUE_DEFAULT();
    /** */
    public static final int H5D_FILL_VALUE_ERROR = H5D_FILL_VALUE_ERROR();
    /** */
    public static final int H5D_FILL_VALUE_UNDEFINED = H5D_FILL_VALUE_UNDEFINED();
    /** */
    public static final int H5D_FILL_VALUE_USER_DEFINED = H5D_FILL_VALUE_USER_DEFINED();
    /** */
    public static final int H5D_LAYOUT_ERROR = H5D_LAYOUT_ERROR();
    /** */
    public static final int H5D_CHUNKED = H5D_CHUNKED();
    /** */
    public static final int H5D_COMPACT = H5D_COMPACT();
    /** */
    public static final int H5D_CONTIGUOUS = H5D_CONTIGUOUS();
    /** */
    public static final int H5D_VIRTUAL = H5D_VIRTUAL();
    /** */
    public static final int H5D_NLAYOUTS = H5D_NLAYOUTS();
    /** */
    public static final int H5D_SPACE_STATUS_ALLOCATED = H5D_SPACE_STATUS_ALLOCATED();
    /** */
    public static final int H5D_SPACE_STATUS_ERROR = H5D_SPACE_STATUS_ERROR();
    /** */
    public static final int H5D_SPACE_STATUS_NOT_ALLOCATED = H5D_SPACE_STATUS_NOT_ALLOCATED();
    /** */
    public static final int H5D_SPACE_STATUS_PART_ALLOCATED = H5D_SPACE_STATUS_PART_ALLOCATED();
    /** */
    public static final int H5D_VDS_ERROR = H5D_VDS_ERROR();
    /** */
    public static final int H5D_VDS_FIRST_MISSING = H5D_VDS_FIRST_MISSING();
    /** */
    public static final int H5D_VDS_LAST_AVAILABLE = H5D_VDS_LAST_AVAILABLE();
    /** */
    public static final int H5D_CHUNK_DONT_FILTER_PARTIAL_CHUNKS = H5D_CHUNK_DONT_FILTER_PARTIAL_CHUNKS();

    /** Different kinds of error information - H5E_type_t */
    public static final int H5E_MAJOR = H5E_MAJOR();
    /** Different kinds of error information - H5E_type_t */
    public static final int H5E_MINOR = H5E_MINOR();
    /** Minor error codes - Object header related errors - Alignment error */
    public static final long H5E_ALIGNMENT = H5E_ALIGNMENT();
    /** Minor error codes - Resource errors - Object already exists */
    public static final long H5E_ALREADYEXISTS = H5E_ALREADYEXISTS();
    /** Minor error codes - Function entry/exit interface - Object already initialized */
    public static final long H5E_ALREADYINIT = H5E_ALREADYINIT();
    /** Major error codes - Invalid arguments to routine */
    public static final long H5E_ARGS = H5E_ARGS();
    /** Major error codes - Object ID */
    public static final long H5E_ID = H5E_ID();
    /** Major error codes - Attribute */
    public static final long H5E_ATTR = H5E_ATTR();
    /** Minor error codes - Object ID related errors - Unable to find ID information (already closed?) */
    public static final long H5E_BADID = H5E_BADID();
    /** Minor error codes - File accessibility errors - Bad file ID accessed */
    public static final long H5E_BADFILE = H5E_BADFILE();
    /** Minor error codes - Object ID related errors - Unable to find ID group information */
    public static final long H5E_BADGROUP = H5E_BADGROUP();
    /** Minor error codes - Object header related errors - Iteration failed */
    public static final long H5E_BADITER = H5E_BADITER();
    /** Minor error codes - Object header related errors - Unrecognized message */
    public static final long H5E_BADMESG = H5E_BADMESG();
    /** Minor error codes - Argument errors - Out of range */
    public static final long H5E_BADRANGE = H5E_BADRANGE();
    /** Minor error codes - Dataspace errors - Invalid selection */
    public static final long H5E_BADSELECT = H5E_BADSELECT();
    /** Datatype conversion errors - Bad size for object */
    public static final long H5E_BADSIZE = H5E_BADSIZE();
    /** Minor error codes - Argument errors - Inappropriate type */
    public static final long H5E_BADTYPE = H5E_BADTYPE();
    /** Minor error codes - Argument errors - Bad value */
    public static final long H5E_BADVALUE = H5E_BADVALUE();
    /** Major error codes - B-Tree node */
    public static final long H5E_BTREE = H5E_BTREE();
    /** Major error codes - Object cache */
    public static final long H5E_CACHE = H5E_CACHE();
    /** I/O pipeline errors - Callback failed */
    public static final long H5E_CALLBACK = H5E_CALLBACK();
    /** I/O pipeline errors - Error from filter 'can apply' callback */
    public static final long H5E_CANAPPLY = H5E_CANAPPLY();
    /** Minor error codes - Resource errors - Can't allocate space */
    public static final long H5E_CANTALLOC = H5E_CANTALLOC();
    /** Minor error codes - Dataspace errors - Can't append object */
    public static final long H5E_CANTAPPEND = H5E_CANTAPPEND();
    /** Minor error codes - Heap errors - Can't attach object */
    public static final long H5E_CANTATTACH = H5E_CANTATTACH();
    /** Minor error codes - Cache related errors - Unable to mark metadata as clean */
    public static final long H5E_CANTCLEAN = H5E_CANTCLEAN();
    /** Minor error codes - Dataspace errors - Can't clip hyperslab region */
    public static final long H5E_CANTCLIP = H5E_CANTCLIP();
    /** Minor error codes - File accessibility errors - Unable to close file */
    public static final long H5E_CANTCLOSEFILE = H5E_CANTCLOSEFILE();
    /** Minor error codes - Group related errors - Can't close object */
    public static final long H5E_CANTCLOSEOBJ = H5E_CANTCLOSEOBJ();
    /** Minor error codes - Dataspace errors - Can't compare objects */
    public static final long H5E_CANTCOMPARE = H5E_CANTCOMPARE();
    /** Minor error codes - Heap errors - Can't compute value */
    public static final long H5E_CANTCOMPUTE = H5E_CANTCOMPUTE();
    /** Datatype conversion errors - Can't convert datatypes */
    public static final long H5E_CANTCONVERT = H5E_CANTCONVERT();
    /** Minor error codes - Resource errors - Unable to copy object */
    public static final long H5E_CANTCOPY = H5E_CANTCOPY();
    /** Minor error codes - Cache related errors - Unable to cork an object */
    public static final long H5E_CANTCORK = H5E_CANTCORK();
    /** Minor error codes - Dataspace errors - Can't count elements */
    public static final long H5E_CANTCOUNT = H5E_CANTCOUNT();
    /** Minor error codes - File accessibility errors - Unable to create file */
    public static final long H5E_CANTCREATE = H5E_CANTCREATE();
    /** Minor error codes - Object ID related errors - Unable to decrement reference count */
    public static final long H5E_CANTDEC = H5E_CANTDEC();
    /** Minor error codes - B-tree related errors - Unable to decode value */
    public static final long H5E_CANTDECODE = H5E_CANTDECODE();
    /** Minor error codes - Object header related errors - Can't delete message */
    public static final long H5E_CANTDELETE = H5E_CANTDELETE();
    /** Minor error codes - File accessibility errors - Unable to delete file */
    public static final long H5E_CANTDELETEFILE = H5E_CANTDELETEFILE();
    /** Minor error codes - Cache related errors - Unable to create a flush dependency */
    public static final long H5E_CANTDEPEND = H5E_CANTDEPEND();
    /** Minor error codes - Cache related errors - Unable to mark metadata as dirty */
    public static final long H5E_CANTDIRTY = H5E_CANTDIRTY();
    /** Minor error codes - B-tree related errors - Unable to encode value */
    public static final long H5E_CANTENCODE = H5E_CANTENCODE();
    /** Minor error codes - Cache related errors - Unable to expunge a metadata cache entry */
    public static final long H5E_CANTEXPUNGE = H5E_CANTEXPUNGE();
    /** Minor error codes - Heap errors - Can't extend heap's space */
    public static final long H5E_CANTEXTEND = H5E_CANTEXTEND();
    /** I/O pipeline errors - Filter operation failed */
    public static final long H5E_CANTFILTER = H5E_CANTFILTER();
    /** Minor error codes - Cache related errors - Unable to flush data from cache */
    public static final long H5E_CANTFLUSH = H5E_CANTFLUSH();
    /** Minor error codes - Resource errors - Unable to free object */
    public static final long H5E_CANTFREE = H5E_CANTFREE();
    /** Minor error codes - Parallel MPI - Can't gather data */
    public static final long H5E_CANTGATHER = H5E_CANTGATHER();
    /** Minor error codes - Resource errors - Unable to garbage collect */
    public static final long H5E_CANTGC = H5E_CANTGC();
    /** Minor error codes - Property list errors - Can't get value */
    public static final long H5E_CANTGET = H5E_CANTGET();
    /** Minor error codes - Resource errors - Unable to compute size */
    public static final long H5E_CANTGETSIZE = H5E_CANTGETSIZE();
    /** Minor error codes - Object ID related errors - Unable to increment reference count */
    public static final long H5E_CANTINC = H5E_CANTINC();
    /** Minor error codes - Function entry/exit interface - Unable to initialize object */
    public static final long H5E_CANTINIT = H5E_CANTINIT();
    /** Minor error codes - Cache related errors - Unable to insert metadata into cache */
    public static final long H5E_CANTINS = H5E_CANTINS();
    /** Minor error codes - B-tree related errors - Unable to insert object */
    public static final long H5E_CANTINSERT = H5E_CANTINSERT();
    /** Minor error codes - B-tree related errors - Unable to list node */
    public static final long H5E_CANTLIST = H5E_CANTLIST();
    /** Minor error codes - Cache related errors - Unable to load metadata into cache */
    public static final long H5E_CANTLOAD = H5E_CANTLOAD();
    /** Minor error codes - Resource errors - Unable to lock object */
    public static final long H5E_CANTLOCK = H5E_CANTLOCK();
    /** Minor error codes - File accessibility errors  Unable to lock file */
    public static final long H5E_CANTLOCKFILE = H5E_CANTLOCKFILE();
    /** Minor error codes - Cache related errors - Unable to mark a pinned entry as clean */
    public static final long H5E_CANTMARKCLEAN = H5E_CANTMARKCLEAN();
    /** Minor error codes - Cache related errors - Unable to mark a pinned entry as dirty */
    public static final long H5E_CANTMARKDIRTY = H5E_CANTMARKDIRTY();
    /** Minor error codes - Cache related errors - Unable to mark an entry as unserialized */
    public static final long H5E_CANTMARKSERIALIZED = H5E_CANTMARKSERIALIZED();
    /** Minor error codes - Cache related errors - Unable to mark an entry as serialized */
    public static final long H5E_CANTMARKUNSERIALIZED = H5E_CANTMARKUNSERIALIZED();
    /** Minor error codes - Free space errors - Can't merge objects */
    public static final long H5E_CANTMERGE = H5E_CANTMERGE();
    /** Minor error codes - B-tree related errors - Unable to modify record */
    public static final long H5E_CANTMODIFY = H5E_CANTMODIFY();
    /** Minor error codes - Link related errors - Can't move object */
    public static final long H5E_CANTMOVE = H5E_CANTMOVE();
    /** Minor error codes - Dataspace errors - Can't move to next iterator location */
    public static final long H5E_CANTNEXT = H5E_CANTNEXT();
    /** Minor error codes - Cache related errors - Unable to notify object about action */
    public static final long H5E_CANTNOTIFY = H5E_CANTNOTIFY();
    /** Minor error codes - File accessibility errors - Unable to open file */
    public static final long H5E_CANTOPENFILE = H5E_CANTOPENFILE();
    /** Minor error codes - Group related errors - Can't open object */
    public static final long H5E_CANTOPENOBJ = H5E_CANTOPENOBJ();
    /** Minor error codes - Heap errors - Can't operate on object */
    public static final long H5E_CANTOPERATE = H5E_CANTOPERATE();
    /** Minor error codes - Object header related errors - Can't pack messages */
    public static final long H5E_CANTPACK = H5E_CANTPACK();
    /** Minor error codes - Cache related errors - Unable to pin cache entry */
    public static final long H5E_CANTPIN = H5E_CANTPIN();
    /** Minor error codes - Cache related errors - Unable to protect metadata */
    public static final long H5E_CANTPROTECT = H5E_CANTPROTECT();
    /** Minor error codes - Parallel MPI - Can't receive data */
    public static final long H5E_CANTRECV = H5E_CANTRECV();
    /** Minor error codes - B-tree related errors - Unable to redistribute records */
    public static final long H5E_CANTREDISTRIBUTE = H5E_CANTREDISTRIBUTE();
    /** Minor error codes - Object ID related errors - Unable to register new ID */
    public static final long H5E_CANTREGISTER = H5E_CANTREGISTER();
    /** Minor error codes - Function entry/exit interface - Unable to release object */
    public static final long H5E_CANTRELEASE = H5E_CANTRELEASE();
    /** Minor error codes - B-tree related errors - Unable to remove object */
    public static final long H5E_CANTREMOVE = H5E_CANTREMOVE();
    /** Minor error codes - Object header related errors - Unable to rename object */
    public static final long H5E_CANTRENAME = H5E_CANTRENAME();
    /** Minor error codes - Object header related errors - Can't reset object */
    public static final long H5E_CANTRESET = H5E_CANTRESET();
    /** Minor error codes - Cache related errors - Unable to resize a metadata cache entry */
    public static final long H5E_CANTRESIZE = H5E_CANTRESIZE();
    /** Minor error codes - Heap errors - Can't restore condition */
    public static final long H5E_CANTRESTORE = H5E_CANTRESTORE();
    /** Minor error codes - Free space errors - Can't revive object */
    public static final long H5E_CANTREVIVE = H5E_CANTREVIVE();
    /** Minor error codes - Free space errors - Can't shrink container */
    public static final long H5E_CANTSHRINK = H5E_CANTSHRINK();
    /** Minor error codes - Dataspace errors - Can't select hyperslab */
    public static final long H5E_CANTSELECT = H5E_CANTSELECT();
    /** Minor error codes - Cache related errors - Unable to serialize data from cache */
    public static final long H5E_CANTSERIALIZE = H5E_CANTSERIALIZE();
    /** Minor error codes - Property list errors - Can't set value */
    public static final long H5E_CANTSET = H5E_CANTSET();
    /** Minor error codes - Link related errors - Can't sort objects */
    public static final long H5E_CANTSORT = H5E_CANTSORT();
    /** Minor error codes - B-tree related errors - Unable to split node */
    public static final long H5E_CANTSPLIT = H5E_CANTSPLIT();
    /** Minor error codes - B-tree related errors - Unable to swap records */
    public static final long H5E_CANTSWAP = H5E_CANTSWAP();
    /** Minor error codes - Cache related errors - Unable to tag metadata in the cache */
    public static final long H5E_CANTTAG = H5E_CANTTAG();
    /** Minor error codes - Cache related errors - Unable to uncork an object */
    public static final long H5E_CANTUNCORK = H5E_CANTUNCORK();
    /** Minor error codes - Cache related errors - Unable to destroy a flush dependency */
    public static final long H5E_CANTUNDEPEND = H5E_CANTUNDEPEND();
    /** Minor error codes - Resource errors - Unable to unlock object */
    public static final long H5E_CANTUNLOCK = H5E_CANTUNLOCK();
    /** Minor error codes - File accessibility errors  Unable to unlock file */
    public static final long H5E_CANTUNLOCKFILE = H5E_CANTUNLOCKFILE();
    /** Minor error codes - Cache related errors - Unable to un-pin cache entry */
    public static final long H5E_CANTUNPIN = H5E_CANTUNPIN();
    /** Minor error codes - Cache related errors - Unable to unprotect metadata */
    public static final long H5E_CANTUNPROTECT = H5E_CANTUNPROTECT();
    /** Minor error codes - Cache related errors - Unable to mark metadata as unserialized */
    public static final long H5E_CANTUNSERIALIZE = H5E_CANTUNSERIALIZE();
    /** Minor error codes - Heap errors - Can't update object */
    public static final long H5E_CANTUPDATE = H5E_CANTUPDATE();
    /** Generic low-level file I/O errors - Close failed */
    public static final long H5E_CLOSEERROR = H5E_CLOSEERROR();
    /** Minor error codes - Group related errors - Name component is too long */
    public static final long H5E_COMPLEN = H5E_COMPLEN();
    /** Major error codes - API Context */
    public static final long H5E_CONTEXT = H5E_CONTEXT();
    /** Major error codes - Dataset */
    public static final long H5E_DATASET = H5E_DATASET();
    /** Major error codes - Dataspace */
    public static final long H5E_DATASPACE = H5E_DATASPACE();
    /** Major error codes - Datatype */
    public static final long H5E_DATATYPE = H5E_DATATYPE();
    /** Value for the default error stack */
    public static final long H5E_DEFAULT = H5E_DEFAULT();
    /** Minor error codes - Property list errors - Duplicate class name in parent class */
    public static final long H5E_DUPCLASS = H5E_DUPCLASS();
    /** Major error codes - Extensible Array */
    public static final long H5E_EARRAY = H5E_EARRAY();
    /** Major error codes - External file list */
    public static final long H5E_EFL = H5E_EFL();
    /** Major error codes - Error API */
    public static final long H5E_ERROR = H5E_ERROR();
    /** Minor error codes - B-tree related errors - Object already exists */
    public static final long H5E_EXISTS = H5E_EXISTS();
    /** Major error codes - Fixed Array */
    public static final long H5E_FARRAY = H5E_FARRAY();
    /** Generic low-level file I/O errors - File control (fcntl) failed */
    public static final long H5E_FCNTL = H5E_FCNTL();
    /** Major error codes - File accessibility */
    public static final long H5E_FILE = H5E_FILE();
    /** Minor error codes - File accessibility errors - File already exists */
    public static final long H5E_FILEEXISTS = H5E_FILEEXISTS();
    /** Minor error codes - File accessibility errors - File already open */
    public static final long H5E_FILEOPEN = H5E_FILEOPEN();
    /** Major error codes - Free Space Manager */
    public static final long H5E_FSPACE = H5E_FSPACE();
    /** Major error codes - Function entry/exit */
    public static final long H5E_FUNC = H5E_FUNC();
    /** Major error codes - Heap */
    public static final long H5E_HEAP = H5E_HEAP();
    /** Minor error codes - Dataspace errors - Internal states are inconsistent */
    public static final long H5E_INCONSISTENTSTATE = H5E_INCONSISTENTSTATE();
    /** Major error codes - Internal error (too specific to document in detail) */
    public static final long H5E_INTERNAL = H5E_INTERNAL();
    /** Major error codes - Low-level I/O */
    public static final long H5E_IO = H5E_IO();
    /** Major error codes - Links */
    public static final long H5E_LINK = H5E_LINK();
    /** Minor error codes - Object header related errors - Bad object header link count */
    public static final long H5E_LINKCOUNT = H5E_LINKCOUNT();
    /** Minor error codes - Cache related errors - Failure in the cache logging framework */
    public static final long H5E_LOGGING = H5E_LOGGING();
    /** Major error codes - Map */
    public static final long H5E_MAP = H5E_MAP();
    /** Minor error codes - File accessibility errors - File mount error */
    public static final long H5E_MOUNT = H5E_MOUNT();
    /** Minor error codes - Parallel MPI - Some MPI function failed */
    public static final long H5E_MPI = H5E_MPI();
    /** Minor error codes - Parallel MPI - MPI Error String */
    public static final long H5E_MPIERRSTR = H5E_MPIERRSTR();
    /** Minor error codes - Link related errors - Too many soft links in path */
    public static final long H5E_NLINKS = H5E_NLINKS();
    /** Minor error codes - Parallel MPI - Can't perform independent IO */
    public static final long H5E_NO_INDEPENDENT = H5E_NO_INDEPENDENT();
    /** I/O pipeline errors - Filter present but encoding disabled */
    public static final long H5E_NOENCODER = H5E_NOENCODER();
    /** I/O pipeline errors - Requested filter is not available */
    public static final long H5E_NOFILTER = H5E_NOFILTER();
    /** Minor error codes - Object ID related errors - Out of IDs for group */
    public static final long H5E_NOIDS = H5E_NOIDS();
    /** Major error codes - No error */
    public static final long H5E_NONE_MAJOR = H5E_NONE_MAJOR();
    /** No error */
    public static final long H5E_NONE_MINOR = H5E_NONE_MINOR();
    /** Minor error codes - Resource errors - No space available for allocation */
    public static final long H5E_NOSPACE = H5E_NOSPACE();
    /** Minor error codes - Cache related errors - Metadata not currently cached */
    public static final long H5E_NOTCACHED = H5E_NOTCACHED();
    /** Minor error codes - B-tree related errors - Object not found */
    public static final long H5E_NOTFOUND = H5E_NOTFOUND();
    /** Minor error codes - File accessibility errors - Not an HDF5 file */
    public static final long H5E_NOTHDF5 = H5E_NOTHDF5();
    /** Minor error codes - Link related errors - Link class not registered */
    public static final long H5E_NOTREGISTERED = H5E_NOTREGISTERED();
    /** Minor error codes - Resource errors - Object is already open */
    public static final long H5E_OBJOPEN = H5E_OBJOPEN();
    /** Major error codes - Object header */
    public static final long H5E_OHDR = H5E_OHDR();
    /** Minor error codes - Plugin errors - Can't open directory or file */
    public static final long H5E_OPENERROR = H5E_OPENERROR();
    /** Generic low-level file I/O errors - Address overflowed */
    public static final long H5E_OVERFLOW = H5E_OVERFLOW();
    /** Major error codes - Page Buffering */
    public static final long H5E_PAGEBUF = H5E_PAGEBUF();
    /** Minor error codes - Group related errors - Problem with path to object */
    public static final long H5E_PATH = H5E_PATH();
    /** Major error codes - Data filters */
    public static final long H5E_PLINE = H5E_PLINE();
    /** Major error codes - Property lists */
    public static final long H5E_PLIST = H5E_PLIST();
    /** Major error codes - Plugin for dynamically loaded library */
    public static final long H5E_PLUGIN = H5E_PLUGIN();
    /** Minor error codes - Cache related errors - Protected metadata error */
    public static final long H5E_PROTECT = H5E_PROTECT();
    /** Generic low-level file I/O errors - Read failed */
    public static final long H5E_READERROR = H5E_READERROR();
    /** Major error codes - References */
    public static final long H5E_REFERENCE = H5E_REFERENCE();
    /** Major error codes - Resource unavailable */
    public static final long H5E_RESOURCE = H5E_RESOURCE();
    /** Major error codes - Reference Counted Strings */
    public static final long H5E_RS = H5E_RS();
    /** Generic low-level file I/O errors - Seek failed */
    public static final long H5E_SEEKERROR = H5E_SEEKERROR();
    /** Minor error codes - Property list errors - Disallowed operation */
    public static final long H5E_SETDISALLOWED = H5E_SETDISALLOWED();
    /** I/O pipeline errors - Error from filter 'set local' callback */
    public static final long H5E_SETLOCAL = H5E_SETLOCAL();
    /** Major error codes - Skip Lists */
    public static final long H5E_SLIST = H5E_SLIST();
    /** Major error codes - Shared Object Header Messages */
    public static final long H5E_SOHM = H5E_SOHM();
    /** Major error codes - Data storage */
    public static final long H5E_STORAGE = H5E_STORAGE();
    /** Major error codes - Symbol table */
    public static final long H5E_SYM = H5E_SYM();
    /** Minor error codes - System level errors - System error message */
    public static final long H5E_SYSERRSTR = H5E_SYSERRSTR();
    /** Minor error codes - Cache related errors - Internal error detected */
    public static final long H5E_SYSTEM = H5E_SYSTEM();
    /** Minor error codes - Link related errors - Link traversal failure */
    public static final long H5E_TRAVERSE = H5E_TRAVERSE();
    /** Minor error codes - File accessibility errors - File has been truncated */
    public static final long H5E_TRUNCATED = H5E_TRUNCATED();
    /** Major error codes - Ternary Search Trees */
    public static final long H5E_TST = H5E_TST();
    /** Minor error codes - Argument errors - Information is uinitialized */
    public static final long H5E_UNINITIALIZED = H5E_UNINITIALIZED();
    /** Minor error codes - Argument errors - Feature is unsupported */
    public static final long H5E_UNSUPPORTED = H5E_UNSUPPORTED();
    /** Minor error codes - Object header related errors - Wrong version number */
    public static final long H5E_VERSION = H5E_VERSION();
    /** Major error codes - Virtual File Layer */
    public static final long H5E_VFL = H5E_VFL();
    /** Major error codes - Virtual Object Layer */
    public static final long H5E_VOL = H5E_VOL();
    /** Error stack traversal direction - begin at API function, end deep */
    public static final long H5E_WALK_DOWNWARD = H5E_WALK_DOWNWARD();
    /** Error stack traversal direction - begin deep, end at API function */
    public static final long H5E_WALK_UPWARD = H5E_WALK_UPWARD();
    /** Generic low-level file I/O errors - Write failed */
    public static final long H5E_WRITEERROR = H5E_WRITEERROR();

    /** */
    private static final int H5ES_STATUS_IN_PROGRESS = H5ES_STATUS_IN_PROGRESS();
    /** */
    private static final int H5ES_STATUS_SUCCEED = H5ES_STATUS_SUCCEED();
    /** */
    private static final int H5ES_STATUS_FAIL = H5ES_STATUS_FAIL();

    /** */
    public static final int H5F_ACC_CREAT = H5F_ACC_CREAT();
    /** */
    public static final int H5F_ACC_EXCL = H5F_ACC_EXCL();
    /** */
    public static final int H5F_ACC_RDONLY = H5F_ACC_RDONLY();
    /** */
    public static final int H5F_ACC_RDWR = H5F_ACC_RDWR();
    /** */
    public static final int H5F_ACC_TRUNC = H5F_ACC_TRUNC();
    /** */
    public static final int H5F_ACC_DEFAULT = H5F_ACC_DEFAULT();
    /** */
    public static final int H5F_ACC_SWMR_READ = H5F_ACC_SWMR_READ();
    /** */
    public static final int H5F_ACC_SWMR_WRITE = H5F_ACC_SWMR_WRITE();
    /** */
    public static final int H5F_CLOSE_DEFAULT = H5F_CLOSE_DEFAULT();
    /** */
    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_V112 = H5F_LIBVER_V112();
    /** */
    public static final int H5F_LIBVER_V114 = H5F_LIBVER_V114();
    /** */
    public static final int H5F_LIBVER_V116 = H5F_LIBVER_V116();
    /** */
    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();
    /** */
    public static final int H5F_OBJ_DATASET = H5F_OBJ_DATASET();
    /** */
    public static final int H5F_OBJ_DATATYPE = H5F_OBJ_DATATYPE();
    /** */
    public static final int H5F_OBJ_FILE = H5F_OBJ_FILE();
    /** */
    public static final int H5F_OBJ_GROUP = H5F_OBJ_GROUP();
    /** */
    public static final int H5F_OBJ_LOCAL = H5F_OBJ_LOCAL();
    /** */
    public static final int H5F_SCOPE_GLOBAL = H5F_SCOPE_GLOBAL();
    /** */
    public static final int H5F_SCOPE_LOCAL = H5F_SCOPE_LOCAL();
    /** */
    public static final int H5F_UNLIMITED = H5F_UNLIMITED();

    /** */
    public static final int H5F_FSPACE_STRATEGY_FSM_AGGR = H5F_FSPACE_STRATEGY_FSM_AGGR();
    /** */
    public static final int H5F_FSPACE_STRATEGY_AGGR = H5F_FSPACE_STRATEGY_AGGR();
    /** */
    public static final int H5F_FSPACE_STRATEGY_PAGE = H5F_FSPACE_STRATEGY_PAGE();
    /** */
    public static final int H5F_FSPACE_STRATEGY_NONE = H5F_FSPACE_STRATEGY_NONE();
    /** */
    public static final int H5F_FSPACE_STRATEGY_NTYPES = H5F_FSPACE_STRATEGY_NTYPES();

    /** */
    public static final long H5FD_CORE = H5FD_CORE();
    /** */
    public static final long H5FD_DIRECT = H5FD_DIRECT();
    /** */
    public static final long H5FD_FAMILY = H5FD_FAMILY();
    /** */
    public static final long H5FD_LOG = H5FD_LOG();
    /** */
    public static final long H5FD_MPIO = H5FD_MPIO();
    /** */
    public static final long H5FD_MULTI = H5FD_MULTI();
    /** */
    public static final long H5FD_SEC2 = H5FD_SEC2();
    /** */
    public static final long H5FD_STDIO = H5FD_STDIO();
    /** */
    public static final long H5FD_WINDOWS = H5FD_WINDOWS();
    /** */
    public static final long H5FD_ROS3 = H5FD_ROS3();
    /** */
    public static final long H5FD_HDFS = H5FD_HDFS();
    /** */
    public static final int H5FD_LOG_LOC_READ = H5FD_LOG_LOC_READ();
    /** */
    public static final int H5FD_LOG_LOC_WRITE = H5FD_LOG_LOC_WRITE();
    /** */
    public static final int H5FD_LOG_LOC_SEEK = H5FD_LOG_LOC_SEEK();
    /** */
    public static final int H5FD_LOG_LOC_IO = H5FD_LOG_LOC_IO();
    /** */
    public static final int H5FD_LOG_FILE_READ = H5FD_LOG_FILE_READ();
    /** */
    public static final int H5FD_LOG_FILE_WRITE = H5FD_LOG_FILE_WRITE();
    /** */
    public static final int H5FD_LOG_FILE_IO = H5FD_LOG_FILE_IO();
    /** */
    public static final int H5FD_LOG_FLAVOR = H5FD_LOG_FLAVOR();
    /** */
    public static final int H5FD_LOG_NUM_READ = H5FD_LOG_NUM_READ();
    /** */
    public static final int H5FD_LOG_NUM_WRITE = H5FD_LOG_NUM_WRITE();
    /** */
    public static final int H5FD_LOG_NUM_SEEK = H5FD_LOG_NUM_SEEK();
    /** */
    public static final int H5FD_LOG_NUM_TRUNCATE = H5FD_LOG_NUM_TRUNCATE();
    /** */
    public static final int H5FD_LOG_NUM_IO = H5FD_LOG_NUM_IO();
    /** */
    public static final int H5FD_LOG_TIME_OPEN = H5FD_LOG_TIME_OPEN();
    /** */
    public static final int H5FD_LOG_TIME_STAT = H5FD_LOG_TIME_STAT();
    /** */
    public static final int H5FD_LOG_TIME_READ = H5FD_LOG_TIME_READ();
    /** */
    public static final int H5FD_LOG_TIME_WRITE = H5FD_LOG_TIME_WRITE();
    /** */
    public static final int H5FD_LOG_TIME_SEEK = H5FD_LOG_TIME_SEEK();
    /** */
    public static final int H5FD_LOG_TIME_CLOSE = H5FD_LOG_TIME_CLOSE();
    /** */
    public static final int H5FD_LOG_TIME_IO = H5FD_LOG_TIME_IO();
    /** */
    public static final int H5FD_LOG_ALLOC = H5FD_LOG_ALLOC();
    /** */
    public static final int H5FD_LOG_ALL = H5FD_LOG_ALL();
    /** */
    public static final int H5FD_MEM_NOLIST = H5FD_MEM_NOLIST();
    /** */
    public static final int H5FD_MEM_DEFAULT = H5FD_MEM_DEFAULT();
    /** */
    public static final int H5FD_MEM_SUPER = H5FD_MEM_SUPER();
    /** */
    public static final int H5FD_MEM_BTREE = H5FD_MEM_BTREE();
    /** */
    public static final int H5FD_MEM_DRAW = H5FD_MEM_DRAW();
    /** */
    public static final int H5FD_MEM_GHEAP = H5FD_MEM_GHEAP();
    /** */
    public static final int H5FD_MEM_LHEAP = H5FD_MEM_LHEAP();
    /** */
    public static final int H5FD_MEM_OHDR = H5FD_MEM_OHDR();
    /** */
    public static final int H5FD_MEM_NTYPES = H5FD_MEM_NTYPES();
    /** */
    public static final long H5FD_DEFAULT_HADDR_SIZE = H5FD_DEFAULT_HADDR_SIZE();
    /** */
    public static final long H5FD_MEM_DEFAULT_SIZE = H5FD_MEM_DEFAULT_SIZE();
    /** */
    public static final long H5FD_MEM_DEFAULT_SUPER_SIZE = H5FD_MEM_DEFAULT_SUPER_SIZE();
    /** */
    public static final long H5FD_MEM_DEFAULT_BTREE_SIZE = H5FD_MEM_DEFAULT_BTREE_SIZE();
    /** */
    public static final long H5FD_MEM_DEFAULT_DRAW_SIZE = H5FD_MEM_DEFAULT_DRAW_SIZE();
    /** */
    public static final long H5FD_MEM_DEFAULT_GHEAP_SIZE = H5FD_MEM_DEFAULT_GHEAP_SIZE();
    /** */
    public static final long H5FD_MEM_DEFAULT_LHEAP_SIZE = H5FD_MEM_DEFAULT_LHEAP_SIZE();
    /** */
    public static final long H5FD_MEM_DEFAULT_OHDR_SIZE = H5FD_MEM_DEFAULT_OHDR_SIZE();

    //    public static final int H5G_DATASET = H5G_DATASET();
    //    public static final int H5G_GROUP = H5G_GROUP();
    //    public static final int H5G_LINK = H5G_LINK();
    //    public static final int H5G_UDLINK = H5G_UDLINK();
    //    public static final int H5G_LINK_ERROR = H5G_LINK_ERROR();
    //    public static final int H5G_LINK_HARD = H5G_LINK_HARD();
    //    public static final int H5G_LINK_SOFT = H5G_LINK_SOFT();
    //    public static final int H5G_NLIBTYPES = H5G_NLIBTYPES();
    //    public static final int H5G_NTYPES = H5G_NTYPES();
    //    public static final int H5G_NUSERTYPES = H5G_NUSERTYPES();
    //    public static final int H5G_RESERVED_5 = H5G_RESERVED_5();
    //    public static final int H5G_RESERVED_6 = H5G_RESERVED_6();
    //    public static final int H5G_RESERVED_7 = H5G_RESERVED_7();
    //    public static final int H5G_SAME_LOC = H5G_SAME_LOC();
    //    public static final int H5G_TYPE = H5G_TYPE();
    //    public static final int H5G_UNKNOWN = H5G_UNKNOWN();

    /** */
    public static final int H5G_STORAGE_TYPE_UNKNOWN = H5G_STORAGE_TYPE_UNKNOWN();
    /** */
    public static final int H5G_STORAGE_TYPE_SYMBOL_TABLE = H5G_STORAGE_TYPE_SYMBOL_TABLE();
    /** */
    public static final int H5G_STORAGE_TYPE_COMPACT = H5G_STORAGE_TYPE_COMPACT();
    /** */
    public static final int H5G_STORAGE_TYPE_DENSE = H5G_STORAGE_TYPE_DENSE();

    /** */
    public static final int H5I_ATTR = H5I_ATTR();
    /** */
    public static final int H5I_BADID = H5I_BADID();
    /** */
    public static final int H5I_DATASET = H5I_DATASET();
    /** */
    public static final int H5I_DATASPACE = H5I_DATASPACE();
    /** */
    public static final int H5I_DATATYPE = H5I_DATATYPE();
    /** */
    public static final int H5I_ERROR_CLASS = H5I_ERROR_CLASS();
    /** */
    public static final int H5I_ERROR_MSG = H5I_ERROR_MSG();
    /** */
    public static final int H5I_ERROR_STACK = H5I_ERROR_STACK();
    /** */
    public static final int H5I_FILE = H5I_FILE();
    /** */
    public static final int H5I_GENPROP_CLS = H5I_GENPROP_CLS();
    /** */
    public static final int H5I_GENPROP_LST = H5I_GENPROP_LST();
    /** */
    public static final int H5I_GROUP = H5I_GROUP();
    /** */
    public static final int H5I_INVALID_HID = H5I_INVALID_HID();
    /** */
    public static final int H5I_NTYPES = H5I_NTYPES();
    /** */
    public static final int H5I_UNINIT = H5I_UNINIT();
    /** */
    public static final int H5I_VFL = H5I_VFL();
    /** */
    public static final int H5I_VOL = H5I_VOL();

    /** */
    public static final int H5L_TYPE_ERROR = H5L_TYPE_ERROR();
    /** */
    public static final int H5L_TYPE_HARD = H5L_TYPE_HARD();
    /** */
    public static final int H5L_TYPE_SOFT = H5L_TYPE_SOFT();
    /** */
    public static final int H5L_TYPE_EXTERNAL = H5L_TYPE_EXTERNAL();
    /** */
    public static final int H5L_TYPE_MAX = H5L_TYPE_MAX();

    /** */
    public static final int H5O_COPY_SHALLOW_HIERARCHY_FLAG = H5O_COPY_SHALLOW_HIERARCHY_FLAG();
    /** */
    public static final int H5O_COPY_EXPAND_SOFT_LINK_FLAG = H5O_COPY_EXPAND_SOFT_LINK_FLAG();
    /** */
    public static final int H5O_COPY_EXPAND_EXT_LINK_FLAG = H5O_COPY_EXPAND_EXT_LINK_FLAG();
    /** */
    public static final int H5O_COPY_EXPAND_REFERENCE_FLAG = H5O_COPY_EXPAND_REFERENCE_FLAG();
    /** */
    public static final int H5O_COPY_WITHOUT_ATTR_FLAG = H5O_COPY_WITHOUT_ATTR_FLAG();
    /** */
    public static final int H5O_COPY_PRESERVE_NULL_FLAG = H5O_COPY_PRESERVE_NULL_FLAG();
    /** */
    public static final int H5O_INFO_BASIC = H5O_INFO_BASIC();
    /** */
    public static final int H5O_INFO_TIME = H5O_INFO_TIME();
    /** */
    public static final int H5O_INFO_NUM_ATTRS = H5O_INFO_NUM_ATTRS();
    /** */
    public static final int H5O_INFO_ALL = H5O_INFO_ALL();
    /** */
    public static final int H5O_NATIVE_INFO_HDR = H5O_NATIVE_INFO_HDR();
    /** */
    public static final int H5O_NATIVE_INFO_META_SIZE = H5O_NATIVE_INFO_META_SIZE();
    /** */
    public static final int H5O_NATIVE_INFO_ALL = H5O_NATIVE_INFO_ALL();
    /** */
    public static final int H5O_SHMESG_NONE_FLAG = H5O_SHMESG_NONE_FLAG();
    /** */
    public static final int H5O_SHMESG_SDSPACE_FLAG = H5O_SHMESG_SDSPACE_FLAG();
    /** */
    public static final int H5O_SHMESG_DTYPE_FLAG = H5O_SHMESG_DTYPE_FLAG();
    /** */
    public static final int H5O_SHMESG_FILL_FLAG = H5O_SHMESG_FILL_FLAG();
    /** */
    public static final int H5O_SHMESG_PLINE_FLAG = H5O_SHMESG_PLINE_FLAG();
    /** */
    public static final int H5O_SHMESG_ATTR_FLAG = H5O_SHMESG_ATTR_FLAG();
    /** */
    public static final int H5O_SHMESG_ALL_FLAG = H5O_SHMESG_ALL_FLAG();
    /** */
    public static final int H5O_TYPE_UNKNOWN = H5O_TYPE_UNKNOWN();
    /** */
    public static final int H5O_TYPE_GROUP = H5O_TYPE_GROUP();
    /** */
    public static final int H5O_TYPE_DATASET = H5O_TYPE_DATASET();
    /** */
    public static final int H5O_TYPE_NAMED_DATATYPE = H5O_TYPE_NAMED_DATATYPE();
    /** */
    public static final int H5O_TYPE_NTYPES = H5O_TYPE_NTYPES();
    /** */
    public static final int H5O_MAX_TOKEN_SIZE = H5O_MAX_TOKEN_SIZE();
    /** */
    public static final H5O_token_t H5O_TOKEN_UNDEF = H5O_TOKEN_UNDEF();

    /** */
    public static final long H5P_ROOT = H5P_ROOT();
    /** */
    public static final long H5P_OBJECT_CREATE = H5P_OBJECT_CREATE();
    /** */
    public static final long H5P_FILE_CREATE = H5P_FILE_CREATE();
    /** */
    public static final long H5P_FILE_ACCESS = H5P_FILE_ACCESS();
    /** */
    public static final long H5P_DATASET_CREATE = H5P_DATASET_CREATE();
    /** */
    public static final long H5P_DATASET_ACCESS = H5P_DATASET_ACCESS();
    /** */
    public static final long H5P_DATASET_XFER = H5P_DATASET_XFER();
    /** */
    public static final long H5P_FILE_MOUNT = H5P_FILE_MOUNT();
    /** */
    public static final long H5P_GROUP_CREATE = H5P_GROUP_CREATE();
    /** */
    public static final long H5P_GROUP_ACCESS = H5P_GROUP_ACCESS();
    /** */
    public static final long H5P_DATATYPE_CREATE = H5P_DATATYPE_CREATE();
    /** */
    public static final long H5P_DATATYPE_ACCESS = H5P_DATATYPE_ACCESS();
    /** */
    public static final long H5P_STRING_CREATE = H5P_STRING_CREATE();
    /** */
    public static final long H5P_ATTRIBUTE_CREATE = H5P_ATTRIBUTE_CREATE();
    /** */
    public static final long H5P_ATTRIBUTE_ACCESS = H5P_ATTRIBUTE_ACCESS();
    /** */
    public static final long H5P_OBJECT_COPY = H5P_OBJECT_COPY();
    /** */
    public static final long H5P_LINK_CREATE = H5P_LINK_CREATE();
    /** */
    public static final long H5P_LINK_ACCESS = H5P_LINK_ACCESS();
    /** */
    public static final long H5P_VOL_INITIALIZE = H5P_VOL_INITIALIZE();
    /** */
    public static final long H5P_FILE_CREATE_DEFAULT = H5P_FILE_CREATE_DEFAULT();
    /** */
    public static final long H5P_FILE_ACCESS_DEFAULT = H5P_FILE_ACCESS_DEFAULT();
    /** */
    public static final long H5P_DATASET_CREATE_DEFAULT = H5P_DATASET_CREATE_DEFAULT();
    /** */
    public static final long H5P_DATASET_ACCESS_DEFAULT = H5P_DATASET_ACCESS_DEFAULT();
    /** */
    public static final long H5P_DATASET_XFER_DEFAULT = H5P_DATASET_XFER_DEFAULT();
    /** */
    public static final long H5P_FILE_MOUNT_DEFAULT = H5P_FILE_MOUNT_DEFAULT();
    /** */
    public static final long H5P_GROUP_CREATE_DEFAULT = H5P_GROUP_CREATE_DEFAULT();
    /** */
    public static final long H5P_GROUP_ACCESS_DEFAULT = H5P_GROUP_ACCESS_DEFAULT();
    /** */
    public static final long H5P_DATATYPE_CREATE_DEFAULT = H5P_DATATYPE_CREATE_DEFAULT();
    /** */
    public static final long H5P_DATATYPE_ACCESS_DEFAULT = H5P_DATATYPE_ACCESS_DEFAULT();
    /** */
    public static final long H5P_ATTRIBUTE_CREATE_DEFAULT = H5P_ATTRIBUTE_CREATE_DEFAULT();
    /** */
    public static final long H5P_ATTRIBUTE_ACCESS_DEFAULT = H5P_ATTRIBUTE_ACCESS_DEFAULT();
    /** */
    public static final long H5P_OBJECT_COPY_DEFAULT = H5P_OBJECT_COPY_DEFAULT();
    /** */
    public static final long H5P_LINK_CREATE_DEFAULT = H5P_LINK_CREATE_DEFAULT();
    /** */
    public static final long H5P_LINK_ACCESS_DEFAULT = H5P_LINK_ACCESS_DEFAULT();
    /** */
    public static final long H5P_VOL_INITIALIZE_DEFAULT = H5P_VOL_INITIALIZE_DEFAULT();
    /** */
    public static final int H5P_CRT_ORDER_TRACKED = H5P_CRT_ORDER_TRACKED();
    /** */
    public static final int H5P_CRT_ORDER_INDEXED = H5P_CRT_ORDER_INDEXED();
    /** */
    public static final long H5P_DEFAULT = H5P_DEFAULT();

    /** */
    public static final int H5PL_TYPE_ERROR = H5PL_TYPE_ERROR();
    /** */
    public static final int H5PL_TYPE_FILTER = H5PL_TYPE_FILTER();
    /** */
    public static final int H5PL_TYPE_VOL = H5PL_TYPE_VOL();
    /** */
    public static final int H5PL_TYPE_NONE = H5PL_TYPE_NONE();
    /** */
    public static final int H5PL_FILTER_PLUGIN = H5PL_FILTER_PLUGIN();
    /** */
    public static final int H5PL_VOL_PLUGIN = H5PL_VOL_PLUGIN();
    /** */
    public static final int H5PL_ALL_PLUGIN = H5PL_ALL_PLUGIN();

    /** */
    public static final int H5R_ATTR = H5R_ATTR();
    /** */
    public static final int H5R_BADTYPE = H5R_BADTYPE();
    /** */
    public static final int H5R_DATASET_REGION = H5R_DATASET_REGION();
    /** */
    public static final int H5R_DATASET_REGION1 = H5R_DATASET_REGION1();
    /** */
    public static final int H5R_DATASET_REGION2 = H5R_DATASET_REGION2();
    /** */
    public static final int H5R_MAXTYPE = H5R_MAXTYPE();
    /** */
    public static final int H5R_DSET_REG_REF_BUF_SIZE = H5R_DSET_REG_REF_BUF_SIZE();
    /** */
    public static final int H5R_OBJ_REF_BUF_SIZE = H5R_OBJ_REF_BUF_SIZE();
    /** */
    public static final int H5R_REF_BUF_SIZE = H5R_REF_BUF_SIZE();
    /** */
    public static final int H5R_OBJECT = H5R_OBJECT();
    /** */
    public static final int H5R_OBJECT1 = H5R_OBJECT1();
    /** */
    public static final int H5R_OBJECT2 = H5R_OBJECT2();

    /** Define atomic datatypes */
    public static final int H5S_ALL = H5S_ALL();
    /** Define user-level maximum number of dimensions */
    public static final int H5S_MAX_RANK = H5S_MAX_RANK();
    /** Different types of dataspaces - error */
    public static final int H5S_NO_CLASS = H5S_NO_CLASS();
    /** Different types of dataspaces - null dataspace */
    public static final int H5S_NULL = H5S_NULL();
    /** Different types of dataspaces - scalar variable */
    public static final int H5S_SCALAR = H5S_SCALAR();
    /** Enumerated type for the type of selection - Entire extent selected */
    public static final int H5S_SEL_ALL = H5S_SEL_ALL();
    /** Enumerated type for the type of selection - Error */
    public static final int H5S_SEL_ERROR = H5S_SEL_ERROR();
    /** Enumerated type for the type of selection - Hyperslab selected */
    public static final int H5S_SEL_HYPERSLABS = H5S_SEL_HYPERSLABS();
    /** Enumerated type for the type of selection - LAST */
    public static final int H5S_SEL_N = H5S_SEL_N();
    /** Enumerated type for the type of selection - Nothing selected */
    public static final int H5S_SEL_NONE = H5S_SEL_NONE();
    /** Enumerated type for the type of selection - Points / elements selected */
    public static final int H5S_SEL_POINTS = H5S_SEL_POINTS();
    /** Different ways of combining selections - Binary "and" operation for hyperslabs */
    public static final int H5S_SELECT_AND = H5S_SELECT_AND();
    /** Different ways of combining selections - Append elements to end of point selection */
    public static final int H5S_SELECT_APPEND = H5S_SELECT_APPEND();
    /** Different ways of combining selections - Invalid upper bound on selection operations */
    public static final int H5S_SELECT_INVALID = H5S_SELECT_INVALID();
    /** Different ways of combining selections - error */
    public static final int H5S_SELECT_NOOP = H5S_SELECT_NOOP();
    /** Different ways of combining selections - Binary "not" operation for hyperslabs */
    public static final int H5S_SELECT_NOTA = H5S_SELECT_NOTA();
    /** Different ways of combining selections - Binary "not" operation for hyperslabs */
    public static final int H5S_SELECT_NOTB = H5S_SELECT_NOTB();
    /** Different ways of combining selections - Binary "or" operation for hyperslabs */
    public static final int H5S_SELECT_OR = H5S_SELECT_OR();
    /** Different ways of combining selections - Prepend elements to beginning of point selection */
    public static final int H5S_SELECT_PREPEND = H5S_SELECT_PREPEND();
    /** Different ways of combining selections - Select "set" operation */
    public static final int H5S_SELECT_SET = H5S_SELECT_SET();
    /** Different ways of combining selections - Binary "xor" operation for hyperslabs */
    public static final int H5S_SELECT_XOR = H5S_SELECT_XOR();
    /** Different types of dataspaces - simple dataspace */
    public static final int H5S_SIMPLE = H5S_SIMPLE();
    /** Define atomic datatypes */
    public static final int H5S_UNLIMITED = H5S_UNLIMITED();

    /** */
    public static final long H5T_ALPHA_B16 = H5T_ALPHA_B16();
    /** */
    public static final long H5T_ALPHA_B32 = H5T_ALPHA_B32();
    /** */
    public static final long H5T_ALPHA_B64 = H5T_ALPHA_B64();
    /** */
    public static final long H5T_ALPHA_B8 = H5T_ALPHA_B8();
    /** */
    public static final long H5T_ALPHA_F32 = H5T_ALPHA_F32();
    /** */
    public static final long H5T_ALPHA_F64 = H5T_ALPHA_F64();
    /** */
    public static final long H5T_ALPHA_I16 = H5T_ALPHA_I16();
    /** */
    public static final long H5T_ALPHA_I32 = H5T_ALPHA_I32();
    /** */
    public static final long H5T_ALPHA_I64 = H5T_ALPHA_I64();
    /** */
    public static final long H5T_ALPHA_I8 = H5T_ALPHA_I8();
    /** */
    public static final long H5T_ALPHA_U16 = H5T_ALPHA_U16();
    /** */
    public static final long H5T_ALPHA_U32 = H5T_ALPHA_U32();
    /** */
    public static final long H5T_ALPHA_U64 = H5T_ALPHA_U64();
    /** */
    public static final long H5T_ALPHA_U8 = H5T_ALPHA_U8();
    /** */
    public static final int H5T_ARRAY = H5T_ARRAY();
    /** */
    public static final int H5T_BITFIELD = H5T_BITFIELD();
    /** */
    public static final int H5T_BKG_NO = H5T_BKG_NO();
    /** */
    public static final int H5T_BKG_YES = H5T_BKG_YES();
    /** */
    public static final long H5T_C_S1 = H5T_C_S1();
    /** */
    public static final int H5T_COMPOUND = H5T_COMPOUND();
    /** */
    public static final int H5T_CONV_CONV = H5T_CONV_CONV();
    /** */
    public static final int H5T_CONV_FREE = H5T_CONV_FREE();
    /** */
    public static final int H5T_CONV_INIT = H5T_CONV_INIT();
    /** */
    public static final int H5T_CSET_ERROR = H5T_CSET_ERROR();
    /** */
    public static final int H5T_CSET_ASCII = H5T_CSET_ASCII();
    /** */
    public static final int H5T_CSET_UTF8 = H5T_CSET_UTF8();
    /** */
    public static final int H5T_CSET_RESERVED_10 = H5T_CSET_RESERVED_10();
    /** */
    public static final int H5T_CSET_RESERVED_11 = H5T_CSET_RESERVED_11();
    /** */
    public static final int H5T_CSET_RESERVED_12 = H5T_CSET_RESERVED_12();
    /** */
    public static final int H5T_CSET_RESERVED_13 = H5T_CSET_RESERVED_13();
    /** */
    public static final int H5T_CSET_RESERVED_14 = H5T_CSET_RESERVED_14();
    /** */
    public static final int H5T_CSET_RESERVED_15 = H5T_CSET_RESERVED_15();
    /** */
    public static final int H5T_CSET_RESERVED_2 = H5T_CSET_RESERVED_2();
    /** */
    public static final int H5T_CSET_RESERVED_3 = H5T_CSET_RESERVED_3();
    /** */
    public static final int H5T_CSET_RESERVED_4 = H5T_CSET_RESERVED_4();
    /** */
    public static final int H5T_CSET_RESERVED_5 = H5T_CSET_RESERVED_5();
    /** */
    public static final int H5T_CSET_RESERVED_6 = H5T_CSET_RESERVED_6();
    /** */
    public static final int H5T_CSET_RESERVED_7 = H5T_CSET_RESERVED_7();
    /** */
    public static final int H5T_CSET_RESERVED_8 = H5T_CSET_RESERVED_8();
    /** */
    public static final int H5T_CSET_RESERVED_9 = H5T_CSET_RESERVED_9();
    /** */
    public static final int H5T_DIR_ASCEND = H5T_DIR_ASCEND();
    /** */
    public static final int H5T_DIR_DEFAULT = H5T_DIR_DEFAULT();
    /** */
    public static final int H5T_DIR_DESCEND = H5T_DIR_DESCEND();
    /** */
    public static final int H5T_ENUM = H5T_ENUM();
    /** */
    public static final int H5T_FLOAT = H5T_FLOAT();
    /** */
    public static final long H5T_FORTRAN_S1 = H5T_FORTRAN_S1();
    /** */
    public static final long H5T_IEEE_F16BE = H5T_IEEE_F16BE();
    /** */
    public static final long H5T_IEEE_F16LE = H5T_IEEE_F16LE();
    /** */
    public static final long H5T_IEEE_F32BE = H5T_IEEE_F32BE();
    /** */
    public static final long H5T_IEEE_F32LE = H5T_IEEE_F32LE();
    /** */
    public static final long H5T_IEEE_F64BE = H5T_IEEE_F64BE();
    /** */
    public static final long H5T_IEEE_F64LE = H5T_IEEE_F64LE();
    /** */
    public static final int H5T_INTEGER = H5T_INTEGER();
    /** */
    public static final long H5T_INTEL_B16 = H5T_INTEL_B16();
    /** */
    public static final long H5T_INTEL_B32 = H5T_INTEL_B32();
    /** */
    public static final long H5T_INTEL_B64 = H5T_INTEL_B64();
    /** */
    public static final long H5T_INTEL_B8 = H5T_INTEL_B8();
    /** */
    public static final long H5T_INTEL_F32 = H5T_INTEL_F32();
    /** */
    public static final long H5T_INTEL_F64 = H5T_INTEL_F64();
    /** */
    public static final long H5T_INTEL_I16 = H5T_INTEL_I16();
    /** */
    public static final long H5T_INTEL_I32 = H5T_INTEL_I32();
    /** */
    public static final long H5T_INTEL_I64 = H5T_INTEL_I64();
    /** */
    public static final long H5T_INTEL_I8 = H5T_INTEL_I8();
    /** */
    public static final long H5T_INTEL_U16 = H5T_INTEL_U16();
    /** */
    public static final long H5T_INTEL_U32 = H5T_INTEL_U32();
    /** */
    public static final long H5T_INTEL_U64 = H5T_INTEL_U64();
    /** */
    public static final long H5T_INTEL_U8 = H5T_INTEL_U8();
    /** */
    public static final long H5T_MIPS_B16 = H5T_MIPS_B16();
    /** */
    public static final long H5T_MIPS_B32 = H5T_MIPS_B32();
    /** */
    public static final long H5T_MIPS_B64 = H5T_MIPS_B64();
    /** */
    public static final long H5T_MIPS_B8 = H5T_MIPS_B8();
    /** */
    public static final long H5T_MIPS_F32 = H5T_MIPS_F32();
    /** */
    public static final long H5T_MIPS_F64 = H5T_MIPS_F64();
    /** */
    public static final long H5T_MIPS_I16 = H5T_MIPS_I16();
    /** */
    public static final long H5T_MIPS_I32 = H5T_MIPS_I32();
    /** */
    public static final long H5T_MIPS_I64 = H5T_MIPS_I64();
    /** */
    public static final long H5T_MIPS_I8 = H5T_MIPS_I8();
    /** */
    public static final long H5T_MIPS_U16 = H5T_MIPS_U16();
    /** */
    public static final long H5T_MIPS_U32 = H5T_MIPS_U32();
    /** */
    public static final long H5T_MIPS_U64 = H5T_MIPS_U64();
    /** */
    public static final long H5T_MIPS_U8 = H5T_MIPS_U8();
    /** */
    public static final long H5T_NATIVE_B16 = H5T_NATIVE_B16();
    /** */
    public static final long H5T_NATIVE_B32 = H5T_NATIVE_B32();
    /** */
    public static final long H5T_NATIVE_B64 = H5T_NATIVE_B64();
    /** */
    public static final long H5T_NATIVE_B8 = H5T_NATIVE_B8();
    /** */
    public static final long H5T_NATIVE_CHAR = H5T_NATIVE_CHAR();
    /** */
    public static final long H5T_NATIVE_DOUBLE = H5T_NATIVE_DOUBLE();
    /** */
    public static final long H5T_NATIVE_FLOAT = H5T_NATIVE_FLOAT();
    /** */
    public static final long H5T_NATIVE_FLOAT16 = H5T_NATIVE_FLOAT16();
    /** */
    public static final long H5T_NATIVE_HADDR = H5T_NATIVE_HADDR();
    /** */
    public static final long H5T_NATIVE_HBOOL = H5T_NATIVE_HBOOL();
    /** */
    public static final long H5T_NATIVE_HERR = H5T_NATIVE_HERR();
    /** */
    public static final long H5T_NATIVE_HSIZE = H5T_NATIVE_HSIZE();
    /** */
    public static final long H5T_NATIVE_HSSIZE = H5T_NATIVE_HSSIZE();
    /** */
    public static final long H5T_NATIVE_INT = H5T_NATIVE_INT();
    /** */
    public static final long H5T_NATIVE_INT_FAST16 = H5T_NATIVE_INT_FAST16();
    /** */
    public static final long H5T_NATIVE_INT_FAST32 = H5T_NATIVE_INT_FAST32();
    /** */
    public static final long H5T_NATIVE_INT_FAST64 = H5T_NATIVE_INT_FAST64();
    /** */
    public static final long H5T_NATIVE_INT_FAST8 = H5T_NATIVE_INT_FAST8();
    /** */
    public static final long H5T_NATIVE_INT_LEAST16 = H5T_NATIVE_INT_LEAST16();
    /** */
    public static final long H5T_NATIVE_INT_LEAST32 = H5T_NATIVE_INT_LEAST32();
    /** */
    public static final long H5T_NATIVE_INT_LEAST64 = H5T_NATIVE_INT_LEAST64();
    /** */
    public static final long H5T_NATIVE_INT_LEAST8 = H5T_NATIVE_INT_LEAST8();
    /** */
    public static final long H5T_NATIVE_INT16 = H5T_NATIVE_INT16();
    /** */
    public static final long H5T_NATIVE_INT32 = H5T_NATIVE_INT32();
    /** */
    public static final long H5T_NATIVE_INT64 = H5T_NATIVE_INT64();
    /** */
    public static final long H5T_NATIVE_INT8 = H5T_NATIVE_INT8();
    /** */
    public static final long H5T_NATIVE_LDOUBLE = H5T_NATIVE_LDOUBLE();
    /** */
    public static final long H5T_NATIVE_LLONG = H5T_NATIVE_LLONG();
    /** */
    public static final long H5T_NATIVE_LONG = H5T_NATIVE_LONG();
    /** */
    public static final long H5T_NATIVE_OPAQUE = H5T_NATIVE_OPAQUE();
    /** */
    public static final long H5T_NATIVE_SCHAR = H5T_NATIVE_SCHAR();
    /** */
    public static final long H5T_NATIVE_SHORT = H5T_NATIVE_SHORT();
    /** */
    public static final long H5T_NATIVE_UCHAR = H5T_NATIVE_UCHAR();
    /** */
    public static final long H5T_NATIVE_UINT = H5T_NATIVE_UINT();
    /** */
    public static final long H5T_NATIVE_UINT_FAST16 = H5T_NATIVE_UINT_FAST16();
    /** */
    public static final long H5T_NATIVE_UINT_FAST32 = H5T_NATIVE_UINT_FAST32();
    /** */
    public static final long H5T_NATIVE_UINT_FAST64 = H5T_NATIVE_UINT_FAST64();
    /** */
    public static final long H5T_NATIVE_UINT_FAST8 = H5T_NATIVE_UINT_FAST8();
    /** */
    public static final long H5T_NATIVE_UINT_LEAST16 = H5T_NATIVE_UINT_LEAST16();
    /** */
    public static final long H5T_NATIVE_UINT_LEAST32 = H5T_NATIVE_UINT_LEAST32();
    /** */
    public static final long H5T_NATIVE_UINT_LEAST64 = H5T_NATIVE_UINT_LEAST64();
    /** */
    public static final long H5T_NATIVE_UINT_LEAST8 = H5T_NATIVE_UINT_LEAST8();
    /** */
    public static final long H5T_NATIVE_UINT16 = H5T_NATIVE_UINT16();
    /** */
    public static final long H5T_NATIVE_UINT32 = H5T_NATIVE_UINT32();
    /** */
    public static final long H5T_NATIVE_UINT64 = H5T_NATIVE_UINT64();
    /** */
    public static final long H5T_NATIVE_UINT8 = H5T_NATIVE_UINT8();
    /** */
    public static final long H5T_NATIVE_ULLONG = H5T_NATIVE_ULLONG();
    /** */
    public static final long H5T_NATIVE_ULONG = H5T_NATIVE_ULONG();
    /** */
    public static final long H5T_NATIVE_USHORT = H5T_NATIVE_USHORT();
    /** */
    public static final int H5T_NCLASSES = H5T_NCLASSES();
    /** */
    public static final int H5T_NO_CLASS = H5T_NO_CLASS();
    /** */
    public static final int H5T_NORM_ERROR = H5T_NORM_ERROR();
    /** */
    public static final int H5T_NORM_IMPLIED = H5T_NORM_IMPLIED();
    /** */
    public static final int H5T_NORM_MSBSET = H5T_NORM_MSBSET();
    /** */
    public static final int H5T_NORM_NONE = H5T_NORM_NONE();
    /** */
    public static final int H5T_NPAD = H5T_NPAD();
    /** */
    public static final int H5T_NSGN = H5T_NSGN();
    /** */
    public static final int H5T_OPAQUE = H5T_OPAQUE();
    /** */
    public static final int H5T_OPAQUE_TAG_MAX = H5T_OPAQUE_TAG_MAX(); /* 1.6.5 */
    /** */
    public static final int H5T_ORDER_BE = H5T_ORDER_BE();
    /** */
    public static final int H5T_ORDER_ERROR = H5T_ORDER_ERROR();
    /** */
    public static final int H5T_ORDER_LE = H5T_ORDER_LE();
    /** */
    public static final int H5T_ORDER_NONE = H5T_ORDER_NONE();
    /** */
    public static final int H5T_ORDER_VAX = H5T_ORDER_VAX();
    /** */
    public static final int H5T_PAD_BACKGROUND = H5T_PAD_BACKGROUND();
    /** */
    public static final int H5T_PAD_ERROR = H5T_PAD_ERROR();
    /** */
    public static final int H5T_PAD_ONE = H5T_PAD_ONE();
    /** */
    public static final int H5T_PAD_ZERO = H5T_PAD_ZERO();
    /** */
    public static final int H5T_PERS_DONTCARE = H5T_PERS_DONTCARE();
    /** */
    public static final int H5T_PERS_HARD = H5T_PERS_HARD();
    /** */
    public static final int H5T_PERS_SOFT = H5T_PERS_SOFT();
    /** */
    public static final int H5T_REFERENCE = H5T_REFERENCE();
    /** */
    public static final int H5T_SGN_2 = H5T_SGN_2();
    /** */
    public static final int H5T_SGN_ERROR = H5T_SGN_ERROR();
    /** */
    public static final int H5T_SGN_NONE = H5T_SGN_NONE();
    /** */
    public static final long H5T_STD_B16BE = H5T_STD_B16BE();
    /** */
    public static final long H5T_STD_B16LE = H5T_STD_B16LE();
    /** */
    public static final long H5T_STD_B32BE = H5T_STD_B32BE();
    /** */
    public static final long H5T_STD_B32LE = H5T_STD_B32LE();
    /** */
    public static final long H5T_STD_B64BE = H5T_STD_B64BE();
    /** */
    public static final long H5T_STD_B64LE = H5T_STD_B64LE();
    /** */
    public static final long H5T_STD_B8BE = H5T_STD_B8BE();
    /** */
    public static final long H5T_STD_B8LE = H5T_STD_B8LE();
    /** */
    public static final long H5T_STD_I16BE = H5T_STD_I16BE();
    /** */
    public static final long H5T_STD_I16LE = H5T_STD_I16LE();
    /** */
    public static final long H5T_STD_I32BE = H5T_STD_I32BE();
    /** */
    public static final long H5T_STD_I32LE = H5T_STD_I32LE();
    /** */
    public static final long H5T_STD_I64BE = H5T_STD_I64BE();
    /** */
    public static final long H5T_STD_I64LE = H5T_STD_I64LE();
    /** */
    public static final long H5T_STD_I8BE = H5T_STD_I8BE();
    /** */
    public static final long H5T_STD_I8LE = H5T_STD_I8LE();
    /** */
    public static final long H5T_STD_REF_DSETREG = H5T_STD_REF_DSETREG();
    /** */
    public static final long H5T_STD_REF_OBJ = H5T_STD_REF_OBJ();
    /** */
    public static final long H5T_STD_REF = H5T_STD_REF();
    /** */
    public static final long H5T_STD_U16BE = H5T_STD_U16BE();
    /** */
    public static final long H5T_STD_U16LE = H5T_STD_U16LE();
    /** */
    public static final long H5T_STD_U32BE = H5T_STD_U32BE();
    /** */
    public static final long H5T_STD_U32LE = H5T_STD_U32LE();
    /** */
    public static final long H5T_STD_U64BE = H5T_STD_U64BE();
    /** */
    public static final long H5T_STD_U64LE = H5T_STD_U64LE();
    /** */
    public static final long H5T_STD_U8BE = H5T_STD_U8BE();
    /** */
    public static final long H5T_STD_U8LE = H5T_STD_U8LE();
    /** */
    public static final int H5T_STR_ERROR = H5T_STR_ERROR();
    /** */
    public static final int H5T_STR_NULLPAD = H5T_STR_NULLPAD();
    /** */
    public static final int H5T_STR_NULLTERM = H5T_STR_NULLTERM();
    /** */
    public static final int H5T_STR_RESERVED_10 = H5T_STR_RESERVED_10();
    /** */
    public static final int H5T_STR_RESERVED_11 = H5T_STR_RESERVED_11();
    /** */
    public static final int H5T_STR_RESERVED_12 = H5T_STR_RESERVED_12();
    /** */
    public static final int H5T_STR_RESERVED_13 = H5T_STR_RESERVED_13();
    /** */
    public static final int H5T_STR_RESERVED_14 = H5T_STR_RESERVED_14();
    /** */
    public static final int H5T_STR_RESERVED_15 = H5T_STR_RESERVED_15();
    /** */
    public static final int H5T_STR_RESERVED_3 = H5T_STR_RESERVED_3();
    /** */
    public static final int H5T_STR_RESERVED_4 = H5T_STR_RESERVED_4();
    /** */
    public static final int H5T_STR_RESERVED_5 = H5T_STR_RESERVED_5();
    /** */
    public static final int H5T_STR_RESERVED_6 = H5T_STR_RESERVED_6();
    /** */
    public static final int H5T_STR_RESERVED_7 = H5T_STR_RESERVED_7();
    /** */
    public static final int H5T_STR_RESERVED_8 = H5T_STR_RESERVED_8();
    /** */
    public static final int H5T_STR_RESERVED_9 = H5T_STR_RESERVED_9();
    /** */
    public static final int H5T_STR_SPACEPAD = H5T_STR_SPACEPAD();
    /** */
    public static final int H5T_STRING = H5T_STRING();
    /** */
    public static final int H5T_TIME = H5T_TIME();
    /** */
    public static final long H5T_UNIX_D32BE = H5T_UNIX_D32BE();
    /** */
    public static final long H5T_UNIX_D32LE = H5T_UNIX_D32LE();
    /** */
    public static final long H5T_UNIX_D64BE = H5T_UNIX_D64BE();
    /** */
    public static final long H5T_UNIX_D64LE = H5T_UNIX_D64LE();
    /** */
    public static final long H5T_VARIABLE = H5T_VARIABLE();
    /** */
    public static final int H5T_VLEN = H5T_VLEN();
    /** */
    public static final int H5T_VL_T = H5T_VL_T();

    /** */
    public static final int H5VL_CAP_FLAG_NONE = H5VL_CAP_FLAG_NONE();
    /** */
    public static final int H5VL_CAP_FLAG_THREADSAFE = H5VL_CAP_FLAG_THREADSAFE();
    /** */
    public static final long H5VL_NATIVE = H5VL_NATIVE();
    /** */
    public static final String H5VL_NATIVE_NAME = H5VL_NATIVE_NAME();
    /** */
    public static final int H5VL_NATIVE_VALUE = H5VL_NATIVE_VALUE();
    /** */
    public static final int H5VL_NATIVE_VERSION = H5VL_NATIVE_VERSION();
    /** */
    public static final int H5_VOL_INVALID = H5_VOL_INVALID();
    /** */
    public static final int H5_VOL_NATIVE = H5_VOL_NATIVE();
    /** */
    public static final int H5_VOL_RESERVED = H5_VOL_RESERVED();
    /** */
    public static final int H5_VOL_MAX = H5_VOL_MAX();

    /** Return values for filter callback function */
    public static final int H5Z_CB_CONT = H5Z_CB_CONT();
    /** Return values for filter callback function */
    public static final int H5Z_CB_ERROR = H5Z_CB_ERROR();
    /** Return values for filter callback function */
    public static final int H5Z_CB_FAIL = H5Z_CB_FAIL();
    /** Return values for filter callback function */
    public static final int H5Z_CB_NO = H5Z_CB_NO();
    /** Values to decide if EDC is enabled for reading data */
    public static final int H5Z_DISABLE_EDC = H5Z_DISABLE_EDC();
    /** Values to decide if EDC is enabled for reading data */
    public static final int H5Z_ENABLE_EDC = H5Z_ENABLE_EDC();
    /** Values to decide if EDC is enabled for reading data */
    public static final int H5Z_ERROR_EDC = H5Z_ERROR_EDC();
    /** Filter IDs - deflation like gzip */
    public static final int H5Z_FILTER_DEFLATE = H5Z_FILTER_DEFLATE();
    /** Filter IDs - no filter */
    public static final int H5Z_FILTER_ERROR = H5Z_FILTER_ERROR();
    /** Filter IDs - fletcher32 checksum of EDC */
    public static final int H5Z_FILTER_FLETCHER32 = H5Z_FILTER_FLETCHER32();
    /** Filter IDs - maximum filter id */
    public static final int H5Z_FILTER_MAX = H5Z_FILTER_MAX();
    /** Filter IDs - nbit compression */
    public static final int H5Z_FILTER_NBIT = H5Z_FILTER_NBIT();
    /** Filter IDs - reserved indefinitely */
    public static final int H5Z_FILTER_NONE = H5Z_FILTER_NONE();
    /** Filter IDs - filter ids below this value are reserved for library use */
    public static final int H5Z_FILTER_RESERVED = H5Z_FILTER_RESERVED();
    /** Filter IDs - scale+offset compression */
    public static final int H5Z_FILTER_SCALEOFFSET = H5Z_FILTER_SCALEOFFSET();
    /** Filter IDs - shuffle the data */
    public static final int H5Z_FILTER_SHUFFLE = H5Z_FILTER_SHUFFLE();
    /** Filter IDs - szip compression */
    public static final int H5Z_FILTER_SZIP = H5Z_FILTER_SZIP();
    /**
     * Flags for filter definition (stored)
     * definition flag mask
     */
    public static final int H5Z_FLAG_DEFMASK = H5Z_FLAG_DEFMASK();
    /**
     * Additional flags for filter invocation (not stored)
     * invocation flag mask
     */
    public static final int H5Z_FLAG_INVMASK = H5Z_FLAG_INVMASK();
    /**
     * Flags for filter definition (stored)
     * filter is mandatory
     */
    public static final int H5Z_FLAG_MANDATORY = H5Z_FLAG_MANDATORY();
    /**
     * Flags for filter definition (stored)
     * filter is optional
     */
    public static final int H5Z_FLAG_OPTIONAL = H5Z_FLAG_OPTIONAL();
    /**
     * Additional flags for filter invocation (not stored)
     * reverse direction; read
     */
    public static final int H5Z_FLAG_REVERSE = H5Z_FLAG_REVERSE();
    /**
     * Additional flags for filter invocation (not stored)
     * skip EDC filters for read
     */
    public static final int H5Z_FLAG_SKIP_EDC = H5Z_FLAG_SKIP_EDC();
    /** Symbol to remove all filters in H5Premove_filter */
    public static final int H5Z_FILTER_ALL = H5Z_FILTER_ALL();
    /** Maximum number of filters allowed in a pipeline */
    public static final int H5Z_MAX_NFILTERS = H5Z_MAX_NFILTERS();
    /** Values to decide if EDC is enabled for reading data */
    public static final int H5Z_NO_EDC = H5Z_NO_EDC();
    /** Bit flags for H5Zget_filter_info */
    public static final int H5Z_FILTER_CONFIG_ENCODE_ENABLED = H5Z_FILTER_CONFIG_ENCODE_ENABLED();
    /** Bit flags for H5Zget_filter_info */
    public static final int H5Z_FILTER_CONFIG_DECODE_ENABLED = H5Z_FILTER_CONFIG_DECODE_ENABLED();
    /** Special parameters for ScaleOffset filter*/
    public static final int H5Z_SO_INT_MINBITS_DEFAULT = H5Z_SO_INT_MINBITS_DEFAULT();
    /** Special parameters for ScaleOffset filter*/
    public static final int H5Z_SO_FLOAT_DSCALE = H5Z_SO_FLOAT_DSCALE();
    /** Special parameters for ScaleOffset filter*/
    public static final int H5Z_SO_FLOAT_ESCALE = H5Z_SO_FLOAT_ESCALE();
    /** Special parameters for ScaleOffset filter*/
    public static final int H5Z_SO_INT = H5Z_SO_INT();
    /** shuffle filter - Number of parameters that users can set */
    public static final int H5Z_SHUFFLE_USER_NPARMS = H5Z_SHUFFLE_USER_NPARMS();
    /** shuffle filter - Total number of parameters for filter */
    public static final int H5Z_SHUFFLE_TOTAL_NPARMS = H5Z_SHUFFLE_TOTAL_NPARMS();
    /** szip filter - Number of parameters that users can set */
    public static final int H5Z_SZIP_USER_NPARMS = H5Z_SZIP_USER_NPARMS();
    /** szip filter - Total number of parameters for filter */
    public static final int H5Z_SZIP_TOTAL_NPARMS = H5Z_SZIP_TOTAL_NPARMS();
    /** szip filter - "User" parameter for option mask */
    public static final int H5Z_SZIP_PARM_MASK = H5Z_SZIP_PARM_MASK();
    /** szip filter - "User" parameter for pixels-per-block */
    public static final int H5Z_SZIP_PARM_PPB = H5Z_SZIP_PARM_PPB();
    /** szip filter - "Local" parameter for bits-per-pixel */
    public static final int H5Z_SZIP_PARM_BPP = H5Z_SZIP_PARM_BPP();
    /** szip filter - "Local" parameter for pixels-per-scanline */
    public static final int H5Z_SZIP_PARM_PPS = H5Z_SZIP_PARM_PPS();
    /** nbit filter - Number of parameters that users can set */
    public static final int H5Z_NBIT_USER_NPARMS = H5Z_NBIT_USER_NPARMS();
    /** scale offset filter - Number of parameters that users can set */
    public static final int H5Z_SCALEOFFSET_USER_NPARMS = H5Z_SCALEOFFSET_USER_NPARMS();

    // /////////////////////////////////////////////////////////////////////////
    // List of private native variables to get constant values from C //
    // DO NOT EDIT THE LIST UNLESS YOU KNOW WHAT YOU DO!!! //
    // /////////////////////////////////////////////////////////////////////////

    private static native final long H5_QUARTER_HADDR_MAX();

    private static native final int H5_SZIP_MAX_PIXELS_PER_BLOCK();

    private static native final int H5_SZIP_NN_OPTION_MASK();

    private static native final int H5_SZIP_EC_OPTION_MASK();

    private static native final int H5_SZIP_ALLOW_K13_OPTION_MASK();

    private static native final int H5_SZIP_CHIP_OPTION_MASK();

    private static native final int H5_INDEX_UNKNOWN();

    private static native final int H5_INDEX_NAME();

    private static native final int H5_INDEX_CRT_ORDER();

    private static native final int H5_INDEX_N();

    private static native final int H5_ITER_UNKNOWN();

    private static native final int H5_ITER_INC();

    private static native final int H5_ITER_DEC();

    private static native final int H5_ITER_NATIVE();

    private static native final int H5_ITER_N();

    private static native final int H5AC_CURR_CACHE_CONFIG_VERSION();

    private static native final int H5AC_MAX_TRACE_FILE_NAME_LEN();

    private static native final int H5AC_METADATA_WRITE_STRATEGY_PROCESS_ZERO_ONLY();

    private static native final int H5AC_METADATA_WRITE_STRATEGY_DISTRIBUTED();

    private static native final int H5C_incr_off();

    private static native final int H5C_incr_threshold();

    private static native final int H5C_flash_incr_off();

    private static native final int H5C_flash_incr_add_space();

    private static native final int H5C_decr_off();

    private static native final int H5C_decr_threshold();

    private static native final int H5C_decr_age_out();

    private static native final int H5C_decr_age_out_with_threshold();

    private static native final int H5D_CHUNK_IDX_BTREE();

    private static native final int H5D_ALLOC_TIME_DEFAULT();

    private static native final int H5D_ALLOC_TIME_EARLY();

    private static native final int H5D_ALLOC_TIME_ERROR();

    private static native final int H5D_ALLOC_TIME_INCR();

    private static native final int H5D_ALLOC_TIME_LATE();

    private static native final int H5D_FILL_TIME_ERROR();

    private static native final int H5D_FILL_TIME_ALLOC();

    private static native final int H5D_FILL_TIME_NEVER();

    private static native final int H5D_FILL_TIME_IFSET();

    private static native final int H5D_FILL_VALUE_DEFAULT();

    private static native final int H5D_FILL_VALUE_ERROR();

    private static native final int H5D_FILL_VALUE_UNDEFINED();

    private static native final int H5D_FILL_VALUE_USER_DEFINED();

    private static native final int H5D_LAYOUT_ERROR();

    private static native final int H5D_CHUNKED();

    private static native final int H5D_COMPACT();

    private static native final int H5D_CONTIGUOUS();

    private static native final int H5D_VIRTUAL();

    private static native final int H5D_NLAYOUTS();

    private static native final int H5D_SPACE_STATUS_ALLOCATED();

    private static native final int H5D_SPACE_STATUS_ERROR();

    private static native final int H5D_SPACE_STATUS_NOT_ALLOCATED();

    private static native final int H5D_SPACE_STATUS_PART_ALLOCATED();

    private static native final int H5D_VDS_ERROR();

    private static native final int H5D_VDS_FIRST_MISSING();

    private static native final int H5D_VDS_LAST_AVAILABLE();

    private static native final int H5D_CHUNK_DONT_FILTER_PARTIAL_CHUNKS();

    private static native final long H5E_ALIGNMENT();

    private static native final long H5E_ALREADYEXISTS();

    private static native final long H5E_ALREADYINIT();

    private static native final long H5E_ARGS();

    private static native final long H5E_ID();

    private static native final long H5E_ATTR();

    private static native final long H5E_BADID();

    private static native final long H5E_BADFILE();

    private static native final long H5E_BADGROUP();

    private static native final long H5E_BADITER();

    private static native final long H5E_BADMESG();

    private static native final long H5E_BADRANGE();

    private static native final long H5E_BADSELECT();

    private static native final long H5E_BADSIZE();

    private static native final long H5E_BADTYPE();

    private static native final long H5E_BADVALUE();

    private static native final long H5E_BTREE();

    private static native final long H5E_CACHE();

    private static native final long H5E_CALLBACK();

    private static native final long H5E_CANAPPLY();

    private static native final long H5E_CANTALLOC();

    private static native final long H5E_CANTAPPEND();

    private static native final long H5E_CANTATTACH();

    private static native final long H5E_CANTCLEAN();

    private static native final long H5E_CANTCLIP();

    private static native final long H5E_CANTCLOSEFILE();

    private static native final long H5E_CANTCLOSEOBJ();

    private static native final long H5E_CANTCOMPARE();

    private static native final long H5E_CANTCOMPUTE();

    private static native final long H5E_CANTCONVERT();

    private static native final long H5E_CANTCOPY();

    private static native final long H5E_CANTCORK();

    private static native final long H5E_CANTCOUNT();

    private static native final long H5E_CANTCREATE();

    private static native final long H5E_CANTDEC();

    private static native final long H5E_CANTDECODE();

    private static native final long H5E_CANTDELETE();

    private static native final long H5E_CANTDELETEFILE();

    private static native final long H5E_CANTDEPEND();

    private static native final long H5E_CANTDIRTY();

    private static native final long H5E_CANTENCODE();

    private static native final long H5E_CANTEXPUNGE();

    private static native final long H5E_CANTEXTEND();

    private static native final long H5E_CANTFILTER();

    private static native final long H5E_CANTFLUSH();

    private static native final long H5E_CANTFREE();

    private static native final long H5E_CANTGATHER();

    private static native final long H5E_CANTGC();

    private static native final long H5E_CANTGET();

    private static native final long H5E_CANTGETSIZE();

    private static native final long H5E_CANTINC();

    private static native final long H5E_CANTINIT();

    private static native final long H5E_CANTINS();

    private static native final long H5E_CANTINSERT();

    private static native final long H5E_CANTLIST();

    private static native final long H5E_CANTLOAD();

    private static native final long H5E_CANTLOCK();

    private static native final long H5E_CANTLOCKFILE();

    private static native final long H5E_CANTMARKCLEAN();

    private static native final long H5E_CANTMARKDIRTY();

    private static native final long H5E_CANTMARKSERIALIZED();

    private static native final long H5E_CANTMARKUNSERIALIZED();

    private static native final long H5E_CANTMERGE();

    private static native final long H5E_CANTMOVE();

    private static native final long H5E_CANTMODIFY();

    private static native final long H5E_CANTNEXT();

    private static native final long H5E_CANTNOTIFY();

    private static native final long H5E_CANTOPENFILE();

    private static native final long H5E_CANTOPENOBJ();

    private static native final long H5E_CANTOPERATE();

    private static native final long H5E_CANTPACK();

    private static native final long H5E_CANTPIN();

    private static native final long H5E_CANTPROTECT();

    private static native final long H5E_CANTRECV();

    private static native final long H5E_CANTREDISTRIBUTE();

    private static native final long H5E_CANTREGISTER();

    private static native final long H5E_CANTRELEASE();

    private static native final long H5E_CANTREMOVE();

    private static native final long H5E_CANTRENAME();

    private static native final long H5E_CANTRESET();

    private static native final long H5E_CANTRESIZE();

    private static native final long H5E_CANTRESTORE();

    private static native final long H5E_CANTREVIVE();

    private static native final long H5E_CANTSHRINK();

    private static native final long H5E_CANTSELECT();

    private static native final long H5E_CANTSET();

    private static native final long H5E_CANTSERIALIZE();

    private static native final long H5E_CANTSORT();

    private static native final long H5E_CANTSPLIT();

    private static native final long H5E_CANTSWAP();

    private static native final long H5E_CANTTAG();

    private static native final long H5E_CANTUNCORK();

    private static native final long H5E_CANTUNDEPEND();

    private static native final long H5E_CANTUNLOCK();

    private static native final long H5E_CANTUNLOCKFILE();

    private static native final long H5E_CANTUNPIN();

    private static native final long H5E_CANTUNPROTECT();

    private static native final long H5E_CANTUNSERIALIZE();

    private static native final long H5E_CANTUPDATE();

    private static native final long H5E_CLOSEERROR();

    private static native final long H5E_COMPLEN();

    private static native final long H5E_CONTEXT();

    private static native final long H5E_DATASET();

    private static native final long H5E_DATASPACE();

    private static native final long H5E_DATATYPE();

    private static native final long H5E_DEFAULT();

    private static native final long H5E_DUPCLASS();

    private static native final long H5E_EARRAY();

    private static native final long H5E_EFL();

    private static native final long H5E_ERROR();

    private static native final long H5E_EXISTS();

    private static native final long H5E_FARRAY();

    private static native final long H5E_FCNTL();

    private static native final long H5E_FILE();

    private static native final long H5E_FILEEXISTS();

    private static native final long H5E_FILEOPEN();

    private static native final long H5E_FSPACE();

    private static native final long H5E_FUNC();

    private static native final long H5E_HEAP();

    private static native final long H5E_INCONSISTENTSTATE();

    private static native final long H5E_INTERNAL();

    private static native final long H5E_IO();

    private static native final long H5E_LINK();

    private static native final long H5E_LINKCOUNT();

    private static native final long H5E_LOGGING();

    private static native final int H5E_MAJOR();

    private static native final long H5E_MAP();

    private static native final int H5E_MINOR();

    private static native final long H5E_MOUNT();

    private static native final long H5E_MPI();

    private static native final long H5E_MPIERRSTR();

    private static native final long H5E_NLINKS();

    private static native final long H5E_NO_INDEPENDENT();

    private static native final long H5E_NOENCODER();

    private static native final long H5E_NOFILTER();

    private static native final long H5E_NOIDS();

    private static native final long H5E_NONE_MAJOR();

    private static native final long H5E_NONE_MINOR();

    private static native final long H5E_NOSPACE();

    private static native final long H5E_NOTCACHED();

    private static native final long H5E_NOTFOUND();

    private static native final long H5E_NOTHDF5();

    private static native final long H5E_NOTREGISTERED();

    private static native final long H5E_OBJOPEN();

    private static native final long H5E_OHDR();

    private static native final long H5E_OPENERROR();

    private static native final long H5E_OVERFLOW();

    private static native final long H5E_PAGEBUF();

    private static native final long H5E_PATH();

    private static native final long H5E_PLINE();

    private static native final long H5E_PLIST();

    private static native final long H5E_PLUGIN();

    private static native final long H5E_PROTECT();

    private static native final long H5E_READERROR();

    private static native final long H5E_REFERENCE();

    private static native final long H5E_RESOURCE();

    private static native final long H5E_RS();

    private static native final long H5E_SEEKERROR();

    private static native final long H5E_SETDISALLOWED();

    private static native final long H5E_SETLOCAL();

    private static native final long H5E_SLIST();

    private static native final long H5E_SOHM();

    private static native final long H5E_STORAGE();

    private static native final long H5E_SYM();

    private static native final long H5E_SYSERRSTR();

    private static native final long H5E_SYSTEM();

    private static native final long H5E_TRAVERSE();

    private static native final long H5E_TRUNCATED();

    private static native final long H5E_TST();

    private static native final long H5E_UNINITIALIZED();

    private static native final long H5E_UNSUPPORTED();

    private static native final long H5E_VERSION();

    private static native final long H5E_VFL();

    private static native final long H5E_VOL();

    private static native final long H5E_WALK_DOWNWARD();

    private static native final long H5E_WALK_UPWARD();

    private static native final long H5E_WRITEERROR();

    private static native final int H5ES_STATUS_IN_PROGRESS();

    private static native final int H5ES_STATUS_SUCCEED();

    private static native final int H5ES_STATUS_FAIL();

    private static native final int H5ES_STATUS_CANCELED();

    private static native final int H5F_ACC_CREAT();

    private static native final int H5F_ACC_EXCL();

    private static native final int H5F_ACC_RDONLY();

    private static native final int H5F_ACC_RDWR();

    private static native final int H5F_ACC_TRUNC();

    private static native final int H5F_ACC_DEFAULT();

    private static native final int H5F_ACC_SWMR_READ();

    private static native final int H5F_ACC_SWMR_WRITE();

    private static native final int H5F_CLOSE_DEFAULT();

    private static native final int H5F_CLOSE_SEMI();

    private static native final int H5F_CLOSE_STRONG();

    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_V112();

    private static native final int H5F_LIBVER_V114();

    private static native final int H5F_LIBVER_V116();

    private static native final int H5F_LIBVER_NBOUNDS();

    private static native final int H5F_LIBVER_LATEST();

    private static native final int H5F_OBJ_ALL();

    private static native final int H5F_OBJ_ATTR();

    private static native final int H5F_OBJ_DATASET();

    private static native final int H5F_OBJ_DATATYPE();

    private static native final int H5F_OBJ_FILE();

    private static native final int H5F_OBJ_GROUP();

    private static native final int H5F_OBJ_LOCAL(); /* 1.6.5 */

    private static native final int H5F_SCOPE_DOWN();

    private static native final int H5F_SCOPE_GLOBAL();

    private static native final int H5F_SCOPE_LOCAL();

    private static native final int H5F_UNLIMITED();

    private static native final int H5F_FSPACE_STRATEGY_FSM_AGGR();

    private static native final int H5F_FSPACE_STRATEGY_AGGR();

    private static native final int H5F_FSPACE_STRATEGY_PAGE();

    private static native final int H5F_FSPACE_STRATEGY_NONE();

    private static native final int H5F_FSPACE_STRATEGY_NTYPES();

    private static native final long H5FD_CORE();

    private static native final long H5FD_DIRECT();

    private static native final long H5FD_FAMILY();

    private static native final long H5FD_LOG();

    private static native final long H5FD_MPIO();

    private static native final long H5FD_MULTI();

    private static native final long H5FD_SEC2();

    private static native final long H5FD_STDIO();

    private static native final long H5FD_WINDOWS();

    private static native final long H5FD_ROS3();

    private static native final long H5FD_HDFS();

    private static native final int H5FD_LOG_LOC_READ();

    private static native final int H5FD_LOG_LOC_WRITE();

    private static native final int H5FD_LOG_LOC_SEEK();

    private static native final int H5FD_LOG_LOC_IO();

    private static native final int H5FD_LOG_FILE_READ();

    private static native final int H5FD_LOG_FILE_WRITE();

    private static native final int H5FD_LOG_FILE_IO();

    private static native final int H5FD_LOG_FLAVOR();

    private static native final int H5FD_LOG_NUM_READ();

    private static native final int H5FD_LOG_NUM_WRITE();

    private static native final int H5FD_LOG_NUM_SEEK();

    private static native final int H5FD_LOG_NUM_TRUNCATE();

    private static native final int H5FD_LOG_NUM_IO();

    private static native final int H5FD_LOG_TIME_OPEN();

    private static native final int H5FD_LOG_TIME_STAT();

    private static native final int H5FD_LOG_TIME_READ();

    private static native final int H5FD_LOG_TIME_WRITE();

    private static native final int H5FD_LOG_TIME_SEEK();

    private static native final int H5FD_LOG_TIME_CLOSE();

    private static native final int H5FD_LOG_TIME_IO();

    private static native final int H5FD_LOG_ALLOC();

    private static native final int H5FD_LOG_ALL();

    private static native final int H5FD_MEM_NOLIST();

    private static native final int H5FD_MEM_DEFAULT();

    private static native final int H5FD_MEM_SUPER();

    private static native final int H5FD_MEM_BTREE();

    private static native final int H5FD_MEM_DRAW();

    private static native final int H5FD_MEM_GHEAP();

    private static native final int H5FD_MEM_LHEAP();

    private static native final int H5FD_MEM_OHDR();

    private static native final int H5FD_MEM_NTYPES();

    private static native final long H5FD_DEFAULT_HADDR_SIZE();

    private static native final long H5FD_MEM_DEFAULT_SIZE();

    private static native final long H5FD_MEM_DEFAULT_SUPER_SIZE();

    private static native final long H5FD_MEM_DEFAULT_BTREE_SIZE();

    private static native final long H5FD_MEM_DEFAULT_DRAW_SIZE();

    private static native final long H5FD_MEM_DEFAULT_GHEAP_SIZE();

    private static native final long H5FD_MEM_DEFAULT_LHEAP_SIZE();

    private static native final long H5FD_MEM_DEFAULT_OHDR_SIZE();

    private static native final int H5G_DATASET();

    private static native final int H5G_GROUP();

    private static native final int H5G_LINK();

    private static native final int H5G_UDLINK();

    private static native final int H5G_LINK_ERROR();

    private static native final int H5G_LINK_HARD();

    private static native final int H5G_LINK_SOFT();

    private static native final int H5G_NLIBTYPES();

    private static native final int H5G_NTYPES();

    private static native final int H5G_NUSERTYPES();

    private static native final int H5G_RESERVED_5();

    private static native final int H5G_RESERVED_6();

    private static native final int H5G_RESERVED_7();

    private static native final int H5G_SAME_LOC();

    private static native final int H5G_STORAGE_TYPE_UNKNOWN();

    private static native final int H5G_STORAGE_TYPE_SYMBOL_TABLE();

    private static native final int H5G_STORAGE_TYPE_COMPACT();

    private static native final int H5G_STORAGE_TYPE_DENSE();

    private static native final int H5G_TYPE();

    private static native final int H5G_UNKNOWN();

    private static native final int H5I_ATTR();

    private static native final int H5I_BADID();

    private static native final int H5I_DATASET();

    private static native final int H5I_DATASPACE();

    private static native final int H5I_DATATYPE();

    private static native final int H5I_ERROR_CLASS();

    private static native final int H5I_ERROR_MSG();

    private static native final int H5I_ERROR_STACK();

    private static native final int H5I_FILE();

    private static native final int H5I_GENPROP_CLS();

    private static native final int H5I_GENPROP_LST();

    private static native final int H5I_GROUP();

    private static native final int H5I_INVALID_HID();

    private static native final int H5I_NTYPES();

    private static native final int H5I_UNINIT();

    private static native final int H5I_VFL();

    private static native final int H5I_VOL();

    private static native final int H5L_TYPE_ERROR();

    private static native final int H5L_TYPE_HARD();

    private static native final int H5L_TYPE_SOFT();

    private static native final int H5L_TYPE_EXTERNAL();

    private static native final int H5L_TYPE_MAX();

    private static native final int H5O_COPY_SHALLOW_HIERARCHY_FLAG();

    private static native final int H5O_COPY_EXPAND_SOFT_LINK_FLAG();

    private static native final int H5O_COPY_EXPAND_EXT_LINK_FLAG();

    private static native final int H5O_COPY_EXPAND_REFERENCE_FLAG();

    private static native final int H5O_COPY_WITHOUT_ATTR_FLAG();

    private static native final int H5O_COPY_PRESERVE_NULL_FLAG();

    private static native final int H5O_INFO_BASIC();

    private static native final int H5O_INFO_TIME();

    private static native final int H5O_INFO_NUM_ATTRS();

    private static native final int H5O_INFO_ALL();

    private static native final int H5O_NATIVE_INFO_HDR();

    private static native final int H5O_NATIVE_INFO_META_SIZE();

    private static native final int H5O_NATIVE_INFO_ALL();

    private static native final int H5O_SHMESG_NONE_FLAG();

    private static native final int H5O_SHMESG_SDSPACE_FLAG();

    private static native final int H5O_SHMESG_DTYPE_FLAG();

    private static native final int H5O_SHMESG_FILL_FLAG();

    private static native final int H5O_SHMESG_PLINE_FLAG();

    private static native final int H5O_SHMESG_ATTR_FLAG();

    private static native final int H5O_SHMESG_ALL_FLAG();

    private static native final int H5O_TYPE_UNKNOWN();

    private static native final int H5O_TYPE_GROUP();

    private static native final int H5O_TYPE_DATASET();

    private static native final int H5O_TYPE_NAMED_DATATYPE();

    private static native final int H5O_TYPE_NTYPES();

    private static native final int H5O_MAX_TOKEN_SIZE();

    private static native final H5O_token_t H5O_TOKEN_UNDEF();

    private static native final long H5P_ROOT();

    private static native final long H5P_OBJECT_CREATE();

    private static native final long H5P_FILE_CREATE();

    private static native final long H5P_FILE_ACCESS();

    private static native final long H5P_DATASET_CREATE();

    private static native final long H5P_DATASET_ACCESS();

    private static native final long H5P_DATASET_XFER();

    private static native final long H5P_FILE_MOUNT();

    private static native final long H5P_GROUP_CREATE();

    private static native final long H5P_GROUP_ACCESS();

    private static native final long H5P_DATATYPE_CREATE();

    private static native final long H5P_DATATYPE_ACCESS();

    private static native final long H5P_STRING_CREATE();

    private static native final long H5P_ATTRIBUTE_CREATE();

    private static native final long H5P_ATTRIBUTE_ACCESS();

    private static native final long H5P_OBJECT_COPY();

    private static native final long H5P_LINK_CREATE();

    private static native final long H5P_LINK_ACCESS();

    private static native final long H5P_VOL_INITIALIZE();

    private static native final long H5P_FILE_CREATE_DEFAULT();

    private static native final long H5P_FILE_ACCESS_DEFAULT();

    private static native final long H5P_DATASET_CREATE_DEFAULT();

    private static native final long H5P_DATASET_ACCESS_DEFAULT();

    private static native final long H5P_DATASET_XFER_DEFAULT();

    private static native final long H5P_FILE_MOUNT_DEFAULT();

    private static native final long H5P_GROUP_CREATE_DEFAULT();

    private static native final long H5P_GROUP_ACCESS_DEFAULT();

    private static native final long H5P_DATATYPE_CREATE_DEFAULT();

    private static native final long H5P_DATATYPE_ACCESS_DEFAULT();

    private static native final long H5P_ATTRIBUTE_CREATE_DEFAULT();

    private static native final long H5P_ATTRIBUTE_ACCESS_DEFAULT();

    private static native final long H5P_OBJECT_COPY_DEFAULT();

    private static native final long H5P_LINK_CREATE_DEFAULT();

    private static native final long H5P_LINK_ACCESS_DEFAULT();

    private static native final long H5P_VOL_INITIALIZE_DEFAULT();

    private static native final int H5P_CRT_ORDER_TRACKED();

    private static native final int H5P_CRT_ORDER_INDEXED();

    private static native final long H5P_DEFAULT();

    private static native final int H5PL_TYPE_ERROR();

    private static native final int H5PL_TYPE_FILTER();

    private static native final int H5PL_TYPE_VOL();

    private static native final int H5PL_TYPE_NONE();

    private static native final int H5PL_FILTER_PLUGIN();

    private static native final int H5PL_ALL_PLUGIN();

    private static native final int H5PL_VOL_PLUGIN();

    private static native final int H5R_ATTR();

    private static native final int H5R_BADTYPE();

    private static native final int H5R_DATASET_REGION();

    private static native final int H5R_DATASET_REGION1();

    private static native final int H5R_DATASET_REGION2();

    private static native final int H5R_MAXTYPE();

    private static native final int H5R_DSET_REG_REF_BUF_SIZE();

    private static native final int H5R_OBJ_REF_BUF_SIZE();

    private static native final int H5R_REF_BUF_SIZE();

    private static native final int H5R_OBJECT();

    private static native final int H5R_OBJECT1();

    private static native final int H5R_OBJECT2();

    private static native final int H5S_ALL();

    private static native final int H5S_MAX_RANK();

    private static native final int H5S_NO_CLASS();

    private static native final int H5S_NULL();

    private static native final int H5S_SCALAR();

    private static native final int H5S_SEL_ALL();

    private static native final int H5S_SEL_ERROR();

    private static native final int H5S_SEL_HYPERSLABS();

    private static native final int H5S_SEL_N();

    private static native final int H5S_SEL_NONE();

    private static native final int H5S_SEL_POINTS();

    private static native final int H5S_SELECT_AND();

    private static native final int H5S_SELECT_APPEND();

    private static native final int H5S_SELECT_INVALID();

    private static native final int H5S_SELECT_NOOP();

    private static native final int H5S_SELECT_NOTA();

    private static native final int H5S_SELECT_NOTB();

    private static native final int H5S_SELECT_OR();

    private static native final int H5S_SELECT_PREPEND();

    private static native final int H5S_SELECT_SET();

    private static native final int H5S_SELECT_XOR();

    private static native final int H5S_SIMPLE();

    private static native final int H5S_UNLIMITED();

    private static native final long H5T_ALPHA_B16();

    private static native final long H5T_ALPHA_B32();

    private static native final long H5T_ALPHA_B64();

    private static native final long H5T_ALPHA_B8();

    private static native final long H5T_ALPHA_F32();

    private static native final long H5T_ALPHA_F64();

    private static native final long H5T_ALPHA_I16();

    private static native final long H5T_ALPHA_I32();

    private static native final long H5T_ALPHA_I64();

    private static native final long H5T_ALPHA_I8();

    private static native final long H5T_ALPHA_U16();

    private static native final long H5T_ALPHA_U32();

    private static native final long H5T_ALPHA_U64();

    private static native final long H5T_ALPHA_U8();

    private static native final int H5T_ARRAY();

    private static native final int H5T_BITFIELD();

    private static native final int H5T_BKG_NO();

    private static native final int H5T_BKG_YES();

    private static native final long H5T_C_S1();

    private static native final int H5T_COMPOUND();

    private static native final int H5T_CONV_CONV();

    private static native final int H5T_CONV_FREE();

    private static native final int H5T_CONV_INIT();

    private static native final int H5T_CSET_ERROR();

    private static native final int H5T_CSET_ASCII();

    private static native final int H5T_CSET_UTF8();

    private static native final int H5T_CSET_RESERVED_10();

    private static native final int H5T_CSET_RESERVED_11();

    private static native final int H5T_CSET_RESERVED_12();

    private static native final int H5T_CSET_RESERVED_13();

    private static native final int H5T_CSET_RESERVED_14();

    private static native final int H5T_CSET_RESERVED_15();

    private static native final int H5T_CSET_RESERVED_2();

    private static native final int H5T_CSET_RESERVED_3();

    private static native final int H5T_CSET_RESERVED_4();

    private static native final int H5T_CSET_RESERVED_5();

    private static native final int H5T_CSET_RESERVED_6();

    private static native final int H5T_CSET_RESERVED_7();

    private static native final int H5T_CSET_RESERVED_8();

    private static native final int H5T_CSET_RESERVED_9();

    private static native final int H5T_DIR_ASCEND();

    private static native final int H5T_DIR_DEFAULT();

    private static native final int H5T_DIR_DESCEND();

    private static native final int H5T_ENUM();

    private static native final int H5T_FLOAT();

    private static native final long H5T_FORTRAN_S1();

    private static native final long H5T_IEEE_F16BE();

    private static native final long H5T_IEEE_F16LE();

    private static native final long H5T_IEEE_F32BE();

    private static native final long H5T_IEEE_F32LE();

    private static native final long H5T_IEEE_F64BE();

    private static native final long H5T_IEEE_F64LE();

    private static native final int H5T_INTEGER();

    private static native final long H5T_INTEL_B16();

    private static native final long H5T_INTEL_B32();

    private static native final long H5T_INTEL_B64();

    private static native final long H5T_INTEL_B8();

    private static native final long H5T_INTEL_F32();

    private static native final long H5T_INTEL_F64();

    private static native final long H5T_INTEL_I16();

    private static native final long H5T_INTEL_I32();

    private static native final long H5T_INTEL_I64();

    private static native final long H5T_INTEL_I8();

    private static native final long H5T_INTEL_U16();

    private static native final long H5T_INTEL_U32();

    private static native final long H5T_INTEL_U64();

    private static native final long H5T_INTEL_U8();

    private static native final long H5T_MIPS_B16();

    private static native final long H5T_MIPS_B32();

    private static native final long H5T_MIPS_B64();

    private static native final long H5T_MIPS_B8();

    private static native final long H5T_MIPS_F32();

    private static native final long H5T_MIPS_F64();

    private static native final long H5T_MIPS_I16();

    private static native final long H5T_MIPS_I32();

    private static native final long H5T_MIPS_I64();

    private static native final long H5T_MIPS_I8();

    private static native final long H5T_MIPS_U16();

    private static native final long H5T_MIPS_U32();

    private static native final long H5T_MIPS_U64();

    private static native final long H5T_MIPS_U8();

    private static native final long H5T_NATIVE_B16();

    private static native final long H5T_NATIVE_B32();

    private static native final long H5T_NATIVE_B64();

    private static native final long H5T_NATIVE_B8();

    private static native final long H5T_NATIVE_CHAR();

    private static native final long H5T_NATIVE_DOUBLE();

    private static native final long H5T_NATIVE_FLOAT();

    private static native final long H5T_NATIVE_FLOAT16();

    private static native final long H5T_NATIVE_HADDR();

    private static native final long H5T_NATIVE_HBOOL();

    private static native final long H5T_NATIVE_HERR();

    private static native final long H5T_NATIVE_HSIZE();

    private static native final long H5T_NATIVE_HSSIZE();

    private static native final long H5T_NATIVE_INT();

    private static native final long H5T_NATIVE_INT_FAST16();

    private static native final long H5T_NATIVE_INT_FAST32();

    private static native final long H5T_NATIVE_INT_FAST64();

    private static native final long H5T_NATIVE_INT_FAST8();

    private static native final long H5T_NATIVE_INT_LEAST16();

    private static native final long H5T_NATIVE_INT_LEAST32();

    private static native final long H5T_NATIVE_INT_LEAST64();

    private static native final long H5T_NATIVE_INT_LEAST8();

    private static native final long H5T_NATIVE_INT16();

    private static native final long H5T_NATIVE_INT32();

    private static native final long H5T_NATIVE_INT64();

    private static native final long H5T_NATIVE_INT8();

    private static native final long H5T_NATIVE_LDOUBLE();

    private static native final long H5T_NATIVE_LLONG();

    private static native final long H5T_NATIVE_LONG();

    private static native final long H5T_NATIVE_OPAQUE();

    private static native final long H5T_NATIVE_SCHAR();

    private static native final long H5T_NATIVE_SHORT();

    private static native final long H5T_NATIVE_UCHAR();

    private static native final long H5T_NATIVE_UINT();

    private static native final long H5T_NATIVE_UINT_FAST16();

    private static native final long H5T_NATIVE_UINT_FAST32();

    private static native final long H5T_NATIVE_UINT_FAST64();

    private static native final long H5T_NATIVE_UINT_FAST8();

    private static native final long H5T_NATIVE_UINT_LEAST16();

    private static native final long H5T_NATIVE_UINT_LEAST32();

    private static native final long H5T_NATIVE_UINT_LEAST64();

    private static native final long H5T_NATIVE_UINT_LEAST8();

    private static native final long H5T_NATIVE_UINT16();

    private static native final long H5T_NATIVE_UINT32();

    private static native final long H5T_NATIVE_UINT64();

    private static native final long H5T_NATIVE_UINT8();

    private static native final long H5T_NATIVE_ULLONG();

    private static native final long H5T_NATIVE_ULONG();

    private static native final long H5T_NATIVE_USHORT();

    private static native final int H5T_NCLASSES();

    private static native final int H5T_NO_CLASS();

    private static native final int H5T_NORM_ERROR();

    private static native final int H5T_NORM_IMPLIED();

    private static native final int H5T_NORM_MSBSET();

    private static native final int H5T_NORM_NONE();

    private static native final int H5T_NPAD();

    private static native final int H5T_NSGN();

    private static native final int H5T_OPAQUE();

    private static native final int H5T_OPAQUE_TAG_MAX();

    private static native final int H5T_ORDER_BE();

    private static native final int H5T_ORDER_ERROR();

    private static native final int H5T_ORDER_LE();

    private static native final int H5T_ORDER_NONE();

    private static native final int H5T_ORDER_VAX();

    private static native final int H5T_PAD_BACKGROUND();

    private static native final int H5T_PAD_ERROR();

    private static native final int H5T_PAD_ONE();

    private static native final int H5T_PAD_ZERO();

    private static native final int H5T_PERS_DONTCARE();

    private static native final int H5T_PERS_HARD();

    private static native final int H5T_PERS_SOFT();

    private static native final int H5T_REFERENCE();

    private static native final int H5T_SGN_2();

    private static native final int H5T_SGN_ERROR();

    private static native final int H5T_SGN_NONE();

    private static native final long H5T_STD_B16BE();

    private static native final long H5T_STD_B16LE();

    private static native final long H5T_STD_B32BE();

    private static native final long H5T_STD_B32LE();

    private static native final long H5T_STD_B64BE();

    private static native final long H5T_STD_B64LE();

    private static native final long H5T_STD_B8BE();

    private static native final long H5T_STD_B8LE();

    private static native final long H5T_STD_I16BE();

    private static native final long H5T_STD_I16LE();

    private static native final long H5T_STD_I32BE();

    private static native final long H5T_STD_I32LE();

    private static native final long H5T_STD_I64BE();

    private static native final long H5T_STD_I64LE();

    private static native final long H5T_STD_I8BE();

    private static native final long H5T_STD_I8LE();

    private static native final long H5T_STD_REF_DSETREG();

    private static native final long H5T_STD_REF_OBJ();

    private static native final long H5T_STD_REF();

    private static native final long H5T_STD_U16BE();

    private static native final long H5T_STD_U16LE();

    private static native final long H5T_STD_U32BE();

    private static native final long H5T_STD_U32LE();

    private static native final long H5T_STD_U64BE();

    private static native final long H5T_STD_U64LE();

    private static native final long H5T_STD_U8BE();

    private static native final long H5T_STD_U8LE();

    private static native final int H5T_STR_ERROR();

    private static native final int H5T_STR_NULLPAD();

    private static native final int H5T_STR_NULLTERM();

    private static native final int H5T_STR_RESERVED_10();

    private static native final int H5T_STR_RESERVED_11();

    private static native final int H5T_STR_RESERVED_12();

    private static native final int H5T_STR_RESERVED_13();

    private static native final int H5T_STR_RESERVED_14();

    private static native final int H5T_STR_RESERVED_15();

    private static native final int H5T_STR_RESERVED_3();

    private static native final int H5T_STR_RESERVED_4();

    private static native final int H5T_STR_RESERVED_5();

    private static native final int H5T_STR_RESERVED_6();

    private static native final int H5T_STR_RESERVED_7();

    private static native final int H5T_STR_RESERVED_8();

    private static native final int H5T_STR_RESERVED_9();

    private static native final int H5T_STR_SPACEPAD();

    private static native final int H5T_STRING();

    private static native final int H5T_TIME();

    private static native final long H5T_UNIX_D32BE();

    private static native final long H5T_UNIX_D32LE();

    private static native final long H5T_UNIX_D64BE();

    private static native final long H5T_UNIX_D64LE();

    private static native final long H5T_VARIABLE();

    private static native final int H5T_VLEN();

    private static native final int H5T_VL_T();

    private static native final int H5VL_CAP_FLAG_NONE();

    private static native final int H5VL_CAP_FLAG_THREADSAFE();

    private static native final long H5VL_NATIVE();

    private static native final String H5VL_NATIVE_NAME();

    private static native final int H5VL_NATIVE_VALUE();

    private static native final int H5VL_NATIVE_VERSION();

    private static native final int H5_VOL_INVALID();

    private static native final int H5_VOL_NATIVE();

    private static native final int H5_VOL_RESERVED();

    private static native final int H5_VOL_MAX();

    private static native final int H5Z_CB_CONT();

    private static native final int H5Z_CB_ERROR();

    private static native final int H5Z_CB_FAIL();

    private static native final int H5Z_CB_NO();

    private static native final int H5Z_DISABLE_EDC();

    private static native final int H5Z_ENABLE_EDC();

    private static native final int H5Z_ERROR_EDC();

    private static native final int H5Z_FILTER_DEFLATE();

    private static native final int H5Z_FILTER_ERROR();

    private static native final int H5Z_FILTER_FLETCHER32();

    private static native final int H5Z_FILTER_MAX();

    private static native final int H5Z_FILTER_NBIT();

    private static native final int H5Z_FILTER_NONE();

    private static native final int H5Z_FILTER_RESERVED();

    private static native final int H5Z_FILTER_SCALEOFFSET();

    private static native final int H5Z_FILTER_SHUFFLE();

    private static native final int H5Z_FILTER_SZIP();

    private static native final int H5Z_FLAG_DEFMASK();

    private static native final int H5Z_FLAG_INVMASK();

    private static native final int H5Z_FLAG_MANDATORY();

    private static native final int H5Z_FLAG_OPTIONAL();

    private static native final int H5Z_FLAG_REVERSE();

    private static native final int H5Z_FLAG_SKIP_EDC();

    private static native final int H5Z_MAX_NFILTERS();

    private static native final int H5Z_NO_EDC();

    private static native final int H5Z_FILTER_CONFIG_ENCODE_ENABLED();

    private static native final int H5Z_FILTER_CONFIG_DECODE_ENABLED();

    private static native final int H5Z_SO_INT_MINBITS_DEFAULT();

    private static native final int H5Z_SO_FLOAT_DSCALE();

    private static native final int H5Z_SO_FLOAT_ESCALE();

    private static native final int H5Z_SO_INT();

    private static native final int H5Z_SHUFFLE_USER_NPARMS();

    private static native final int H5Z_SHUFFLE_TOTAL_NPARMS();

    private static native final int H5Z_SZIP_USER_NPARMS();

    private static native final int H5Z_SZIP_TOTAL_NPARMS();

    private static native final int H5Z_SZIP_PARM_MASK();

    private static native final int H5Z_SZIP_PARM_PPB();

    private static native final int H5Z_SZIP_PARM_BPP();

    private static native final int H5Z_SZIP_PARM_PPS();

    private static native final int H5Z_NBIT_USER_NPARMS();

    private static native final int H5Z_SCALEOFFSET_USER_NPARMS();

    private static native final int H5Z_FILTER_ALL();
}