Modifier and Type | Method and Description |
---|---|
StarGraph |
build()
Deprecated.
As of release 3.3.5, replaced by
create() . |
StarGraph.Builder |
compareIdsUsingStrings(boolean b)
Tell StarGraph whether to invoke
Object.toString() on vertex and edge IDs during
comparisons (including "does an element with this ID already exist" checks). |
StarGraph |
create() |
StarGraph.Builder |
internStrings(boolean b)
Tell StarGraph whether to invoke
String.intern() on label and property key strings. |
public StarGraph.Builder internStrings(boolean b)
String.intern()
on label and property key strings.
The default value is deliberately undefined, so that StarGraph's internals may freely change.
However, if this builder method is never invoked, then the builder is guaranteed to use
whatever default value StarGraph's other public constructors or factory methods would use.
This option exists solely for performance tuning in specialized use-cases.b
- true to allow interning, false otherwisepublic StarGraph.Builder compareIdsUsingStrings(boolean b)
Object.toString()
on vertex and edge IDs during
comparisons (including "does an element with this ID already exist" checks).
The default value is deliberately undefined, so that StarGraph's internals may freely change.
However, if this builder method is never invoked, then the builder is guaranteed to use
whatever default value StarGraph's other public constructors or factory methods would use.
This option exists solely for performance tuning in specialized use-cases.b
- @Deprecated public StarGraph build()
create()
.public StarGraph create()
Copyright © 2013–2021 Apache Software Foundation. All rights reserved.