Package ucar.nc2.iosp.zarr
Class ZArray
- java.lang.Object
-
- ucar.nc2.iosp.zarr.ZArray
-
public class ZArray extends Object
Java representation of .zarray metadata
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ZArray.Order
Column or row order
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_SEPARATOR
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteOrder
getByteOrder()
int[]
getChunks()
Filter
getCompressor()
DataType
getDataType()
String
getDtype()
Object
getFillValue()
List<Filter>
getFilters()
ZArray.Order
getOrder()
String
getSeparator()
int[]
getShape()
-
-
-
Field Detail
-
DEFAULT_SEPARATOR
public static final String DEFAULT_SEPARATOR
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ZArray
public ZArray(int[] shape, int[] chunks, Object fill_value, String dtype, Filter compressor, String order, List<Filter> filters, String separator) throws ZarrFormatException
- Throws:
ZarrFormatException
-
-
Method Detail
-
getShape
public int[] getShape()
-
getChunks
public int[] getChunks()
-
getCompressor
public Filter getCompressor()
-
getFillValue
public Object getFillValue()
-
getOrder
public ZArray.Order getOrder()
-
getSeparator
public String getSeparator()
-
getDtype
public String getDtype()
-
getDataType
public DataType getDataType()
-
getByteOrder
public ByteOrder getByteOrder()
-
-