Package io.objectbox.flatbuffers
Class LongVector
java.lang.Object
io.objectbox.flatbuffers.BaseVector
io.objectbox.flatbuffers.LongVector
Helper type for accessing vector of long values.
-
Field Summary
Fields inherited from class io.objectbox.flatbuffers.BaseVector
bb
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription__assign
(int _vector, ByteBuffer _bb) Assigns vector access object to vector data.long
get
(int j) Reads the long value at the given index.
-
Constructor Details
-
LongVector
public LongVector()
-
-
Method Details
-
__assign
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 long get(int j) Reads the long value at the given index.- Parameters:
j
- The index from which the long value will be read.- Returns:
- the signed 64-bit value at the given index.
-