Class DoubleVector


  • public final class DoubleVector
    extends BaseVector
    Helper type for accessing vector of double values.
    • Field Summary

      • Fields inherited from class io.objectbox.flatbuffers.BaseVector

        bb
    • Constructor Summary

      Constructors 
      Constructor Description
      DoubleVector()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      DoubleVector __assign​(int _vector, java.nio.ByteBuffer _bb)
      Assigns vector access object to vector data.
      double get​(int j)
      Reads the double value at the given index.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DoubleVector

        public DoubleVector()
    • Method Detail

      • __assign

        public DoubleVector __assign​(int _vector,
                                     java.nio.ByteBuffer _bb)
        Assigns vector access object to vector data.
        Parameters:
        _vector - Start data of a vector.
        _bb - Table's ByteBuffer.
        Returns:
        Returns current vector access object assigned to vector data whose offset is stored at `vector`.
      • get

        public double get​(int j)
        Reads the double value at the given index.
        Parameters:
        j - The index from which the double value will be read.
        Returns:
        the double value at the given index.