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

org.drools.kproject.Folder Maven / Gradle / Ivy

package org.drools.kproject;

import java.util.Collection;

public interface Folder extends Resource {
    String getName();
    
    File getFile(String name);
    
    boolean exists();
    
    boolean create();
    
    Folder getFolder(String name);
    
    Path getPath();
    
    Folder getParent();
    
    Collection getMembers();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy