All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.zeimao77.product.tree.TreeNode Maven / Gradle / Ivy

package top.zeimao77.product.tree;

import java.util.List;

/**
 * 树节点
 * @param  实现类自身类型
 */
public interface TreeNode {
    String __getParentId();
    String __getNodeId();
    T __parent();

    /**
     * @return 子节点集合
     */
    List childs();
    boolean addChild(T t);
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy