void |
BTreeManager.join(ItemSequence itemSequence,
Node node,
Node cause) |
This implementation does not actually join any nodes.
|
void |
BTreeManager.join(ItemSequence itemSequence,
Node node,
Property cause) |
This implementation does not actually join any nodes.
|
void |
TreeManager.join(ItemSequence itemSequence,
Node node,
Node cause) |
After the node cause has been deleted from the sequence
itemSequence , the implementation of this method may decide
to join the parent node of cause with some
other nodes.
|
void |
TreeManager.join(ItemSequence itemSequence,
Node node,
Property cause) |
After the property cause has been deleted from the sequence
itemSequence , the implementation of this method may decide
to join the parent node of cause with some
other nodes.
|
void |
BTreeManager.split(ItemSequence itemSequence,
Node node,
Node cause) |
This implementations splits node when its number of child
nodes exceeds the maximum number specified in the constructor.
|
void |
BTreeManager.split(ItemSequence itemSequence,
Node node,
Property cause) |
This implementations splits node when its number of
properties exceeds the maximum number specified in the constructor.
|
void |
TreeManager.split(ItemSequence itemSequence,
Node node,
Node cause) |
After the node cause has been inserted into the sequence
itemSequence , the implementation of this method may decide
to split the parent node of cause into two or
more new nodes.
|
void |
TreeManager.split(ItemSequence itemSequence,
Node node,
Property cause) |
After the property cause has been inserted into the sequence
itemSequence , the implementation of this method may decide
to split the parent node of cause into two or
more new nodes.
|