You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-11Lines changed: 7 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,11 +23,11 @@
23
23
24
24
The following guides explain the fundamental data structures used in the Java implementation of Apache Arrow.
25
25
26
-
-[ValueVector](https://arrow.apache.org/docs/java/vector.html) is an abstraction that is used to store a sequence of values having the same type in an individual column.
27
-
-[VectorSchemaRoot](https://arrow.apache.org/docs/java/vector_schema_root.html) is a container that can hold multiple vectors based on a schema.
28
-
- The [Reading/Writing IPC formats](https://arrow.apache.org/docs/java/ipc.html) guide explains how to stream record batches as well as serializing record batches to files.
26
+
-[ValueVector](https://arrow.apache.org/java/current/vector.html) is an abstraction that is used to store a sequence of values having the same type in an individual column.
27
+
-[VectorSchemaRoot](https://arrow.apache.org/java/current/vector_schema_root.html#vectorschemaroot) is a container that can hold multiple vectors based on a schema.
28
+
- The [Reading/Writing IPC formats](https://arrow.apache.org/java/current/ipc.html) guide explains how to stream record batches as well as serializing record batches to files.
29
29
30
-
Generated javadoc documentation is available [here](https://arrow.apache.org/docs/java/).
30
+
Generated javadoc documentation is available [here](https://arrow.apache.org/java/current/).
31
31
32
32
## Building from source
33
33
@@ -93,7 +93,7 @@ conflicting or duplicate fields set this JVM flag or use the correct static cons
93
93
94
94
## Java Code Style Guide
95
95
96
-
Arrow Java follows the Google style guide [here][3] with the following
96
+
Arrow Java follows the [Google Java Style Guide](http://google.github.io/styleguide/javaguide.html) with the following
97
97
differences:
98
98
99
99
* Imports are grouped, from top to bottom, in this order: static imports,
@@ -119,12 +119,12 @@ following command run in the project root directory:
0 commit comments