Uses of Class
io.vavr.collection.Tree.Order
-
Packages that use Tree.Order Package Description io.vavr.collection Purely functional collections based on Traversable. -
-
Uses of Tree.Order in io.vavr.collection
Methods in io.vavr.collection that return Tree.Order Modifier and Type Method Description static Tree.Order
Tree.Order. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Tree.Order[]
Tree.Order. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.vavr.collection with parameters of type Tree.Order Modifier and Type Method Description default Iterator<T>
Tree. iterator(Tree.Order order)
Traverses this tree values in a specificTree.Order
.default Seq<Tree.Node<T>>
Tree. traverse(Tree.Order order)
Traverses this tree in a specific order.default Seq<T>
Tree. values(Tree.Order order)
Traverses this tree values in a specific order.
-