TreeAdapter

Provides the parent/child relationship information between pojos to derive a tree-structure.

API

TreeAdapter.java
interface TreeAdapter<T> {
  int childCountOf(T value)     (1)
  Stream<T> childrenOf(T value)     (2)
}

Members

childCountOf(T)

childrenOf(T)