aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/flatbuffers/DoubleVector.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/flatbuffers/DoubleVector.java')
-rw-r--r--java/com/google/flatbuffers/DoubleVector.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/java/com/google/flatbuffers/DoubleVector.java b/java/com/google/flatbuffers/DoubleVector.java
new file mode 100644
index 00000000..fd4a3a48
--- /dev/null
+++ b/java/com/google/flatbuffers/DoubleVector.java
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2019 Google Inc. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.google.flatbuffers;
+
+import static com.google.flatbuffers.Constants.*;
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+import java.nio.charset.Charset;
+
+/**
+ * Helper type for accessing vector of double values.
+ */
+public final class DoubleVector extends BaseVector {
+ /**
+ * Assigns vector access object to vector data.
+ *
+ * @param _vector Start data of a vector.
+ * @param _bb Table's ByteBuffer.
+ * @return Returns current vector access object assigned to vector data whose offset is stored at
+ * `vector`.
+ */
+ public DoubleVector __assign(int _vector, ByteBuffer _bb) {
+ __reset(_vector, Constants.SIZEOF_DOUBLE, _bb); return this;
+ }
+
+ /**
+ * Reads the double value at the given index.
+ *
+ * @param j The index from which the double value will be read.
+ * @return the double value at the given index.
+ */
+ public double get(int j) {
+ return bb.getDouble(__element(j));
+ }
+}