Add a new vertex with the given name at the position specified
by the insert order io and the given rank, and set its value to a new
node, and return the new node as the result.
AUTOCOMMIT may be set in the state of a Storage, meaning that
the storage is auto-committed from time to time by the e4Graph
runtime system (off by default).
AUTOGC -
Static variable in class com.e4graph.Storage
AUTOGC may be set in the state of a Storage, meaning that the
e4Graph runtime performs GCs on this storage as needed (on by
default).
COMPACTATCLOSE may be set in the state of a Storage, meaning
that the storag is compacted to its smallest possible on-disk
size when it is closed (off by default).
Copy the contents of this storage (including any uncommitted
changes) to the other storage, and if forceCommit is true,
force a commit action on the other storage after the copy.
IOAFTER -
Static variable in class com.e4graph.Node
IOAFTER is one of the acceptable values for an insert order
specification, denoting that the value should be inserted as
the vertex after the specified rank (that is, rank + 1).
IOAT is one of the acceptable values for an insert order
specification, denoting the value should be inserted at the
specified rank.
IOBEFORE -
Static variable in class com.e4graph.Node
IOBEFORE is one of the acceptable values for an insert order
specification, denoting that the value should be inserted as
the vertex before the specified rank (that is, rank - 1).
IOFIRST -
Static variable in class com.e4graph.Node
IOFIRST is one of the acceptable values for an insert order
specification, denoting that the value should be inserted as
the (currently) first vertex of this node, before all current vertices.
IOLAST -
Static variable in class com.e4graph.Node
IOLAST is one of the acceptable values for an insert order
specification, denoting that the value should be inserted as
the (currently) last vertex of this node, after all current vertices.
IONONE -
Static variable in class com.e4graph.Node
IONONE is one of the acceptable values for an insert order
specification, denoting an illegal or meaningless insert order.
Move the given vertex to the position specified by the insert order
io and the given offset relative to this vertex, in the node containing
this vertex.
Is a garbage collection needed for this storage (it is needed
if there may be detached nodes and vertices which are not
referenced by the user program).