Interface Node

All Known Subinterfaces:
Node, Node
All Known Implementing Classes:
AbstractNode, Array, Array, Array, Group, Group, Group

public interface Node
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final String
     
    static final String
     
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    static Node
    open(StoreHandle storeHandle)
    Opens an existing Zarr array or group at a specified storage location.
    static Node
    open(String path)
    Opens an existing Zarr array or group at a specified storage location.
    static Node
    open(Path path)
    Opens an existing Zarr array or group at a specified storage location.
  • Field Details

  • Method Details

    • open

      static Node open(StoreHandle storeHandle) throws IOException, ZarrException
      Opens an existing Zarr array or group at a specified storage location. Automatically detects the Zarr version.
      Parameters:
      storeHandle - the storage location of the Zarr array
      Throws:
      IOException - throws IOException if the metadata cannot be read
      ZarrException - throws ZarrException if the Zarr array cannot be opened
    • open

      static Node open(Path path) throws IOException, ZarrException
      Opens an existing Zarr array or group at a specified storage location. Automatically detects the Zarr version.
      Parameters:
      path - the storage location of the Zarr array
      Throws:
      IOException - throws IOException if the metadata cannot be read
      ZarrException - throws ZarrException if the Zarr array cannot be opened
    • open

      static Node open(String path) throws IOException, ZarrException
      Opens an existing Zarr array or group at a specified storage location. Automatically detects the Zarr version.
      Parameters:
      path - the storage location of the Zarr array
      Throws:
      IOException - throws IOException if the metadata cannot be read
      ZarrException - throws ZarrException if the Zarr array cannot be opened