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

io.robe.common.utils.file.TreeData Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.common.utils.file;

import java.io.File;

public abstract  class TreeData {

    private final File file;

    public TreeData(File file){
        this.file=file;
    }

    public boolean isFile(){
        return file.isFile();
    }
    public boolean isDirectory(){
       return file.isDirectory();
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy