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

me.youm.frame.webmvc.tree.INode Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package me.youm.frame.webmvc.tree;

import java.io.Serializable;
import java.util.List;

public interface INode extends Serializable {

    Long getId();

    Long getParentId();

    List getChildren();

    default Boolean getHasChildren() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy