Uses of Class
org.aksw.deer.util.TreeX
-
Packages that use TreeX Package Description org.aksw.deer.util -
-
Uses of TreeX in org.aksw.deer.util
Methods in org.aksw.deer.util that return TreeX Modifier and Type Method Description TreeX<T>TreeX. addChild(TreeX<T> child)Add child node to the current tree nodeTreeX<T>TreeX. addParent(TreeX<T> parent)Add parent node to the current tree nodeTreeX<T>TreeX. getParent()Return the first parentMethods in org.aksw.deer.util that return types with arguments of type TreeX Modifier and Type Method Description java.util.List<TreeX<T>>TreeX. getchildren()java.util.List<TreeX<T>>TreeX. getChildren()java.util.Set<TreeX<T>>TreeX. getLeaves()returns tree leavesjava.util.List<TreeX<T>>TreeX. getParents()Return all parentsMethods in org.aksw.deer.util with parameters of type TreeX Modifier and Type Method Description TreeX<T>TreeX. addChild(TreeX<T> child)Add child node to the current tree nodeTreeX<T>TreeX. addParent(TreeX<T> parent)Add parent node to the current tree nodevoidTreeX. removeChild(TreeX<T> child)Remove ChildvoidTreeX. setParent(TreeX<T> parent)Method parameters in org.aksw.deer.util with type arguments of type TreeX Modifier and Type Method Description voidTreeX. setChildren(java.util.List<TreeX<T>> children)voidTreeX. setParents(java.util.List<TreeX<T>> parents)Constructors in org.aksw.deer.util with parameters of type TreeX Constructor Description TreeX(java.util.List<TreeX<T>> parents, T value, TreeX<T> child)create tree node with many parents and a single childTreeX(TreeX<T> root)Copy constructorTreeX(TreeX<T> parent, T value, java.util.List<TreeX<T>> childrenlist)create tree node with a single parent and many childrenConstructor parameters in org.aksw.deer.util with type arguments of type TreeX Constructor Description TreeX(java.util.List<TreeX<T>> parents, T value, java.util.List<TreeX<T>> childrenlist)create tree node with many parents and many childrenTreeX(java.util.List<TreeX<T>> parents, T value, TreeX<T> child)create tree node with many parents and a single childTreeX(TreeX<T> parent, T value, java.util.List<TreeX<T>> childrenlist)create tree node with a single parent and many children
-