Uses of Interface
org.apache.jackrabbit.oak.api.Tree
-
Packages that use Tree Package Description org.apache.jackrabbit.oak.api Oak repository API -
-
Uses of Tree in org.apache.jackrabbit.oak.api
Fields in org.apache.jackrabbit.oak.api declared as Tree Modifier and Type Field Description static Tree[]
Tree. EMPTY_ARRAY
Empty array of trees.Methods in org.apache.jackrabbit.oak.api that return Tree Modifier and Type Method Description @NotNull Tree
Tree. addChild(@NotNull java.lang.String name)
Add a child with the givenname
.@NotNull Tree
Tree. getChild(@NotNull java.lang.String name)
Get a possibly non existing child of thisTree
.@NotNull Tree
Tree. getParent()
Tree
ResultRow. getTree(java.lang.String selectorName)
The tree for the given selector name.@NotNull Tree
Root. getTree(@NotNull java.lang.String path)
Retrieve the possible non existingTree
at the given absolutepath
.Methods in org.apache.jackrabbit.oak.api that return types with arguments of type Tree Modifier and Type Method Description @NotNull java.lang.Iterable<Tree>
Tree. getChildren()
All accessible children of thisTree
instance.
-