Interface ValueLayerStore

All Known Implementing Classes:
DenseValueLayerStore, SparseValueLayerStore

public interface ValueLayerStore
Interface for value layer data stores.
Author:
Eric Tatara
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    get(long index)
    Get the double value for the specified index.
    void
    set(long index, double value)
    Set the double value for the specified index.
    int
     
  • Method Details

    • get

      double get(long index)
      Get the double value for the specified index.
      Parameters:
      index -
      Returns:
    • set

      void set(long index, double value)
      Set the double value for the specified index.
      Parameters:
      index -
      value -
    • size

      int size()