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

ru.greatbit.utils.tree.api.Oriented Maven / Gradle / Ivy

package ru.greatbit.utils.tree.api;

import ru.greatbit.utils.tree.nodes.Node;

import java.util.List;

/**
 * Created by azee on 5/8/14.
 * Used for oriented N-ary trees
 */
public interface Oriented {

    public List getLeftChildren();

    public List getRightChildren();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy