Uses of Class
com.eu.miscedautils.CommonUtils.Paths

Packages that use Paths
com.eu.miscedautils.CommonUtils   
 

Uses of Paths in com.eu.miscedautils.CommonUtils
 

Methods in com.eu.miscedautils.CommonUtils that return Paths
 Paths Paths.add(java.lang.String dir, java.lang.String name)
          Adds a single path to this Paths object.
 Paths Paths.addFile(java.lang.String fullPath)
          Adds a single path to this Paths object.
 Paths Paths.copyTo(java.lang.String destDir)
          Copies the files and directories to the specified directory.
 Paths Paths.dirsOnly()
          Returns a Paths object containing the paths that are directories.
 Paths Paths.filesOnly()
          Returns a Paths object containing the paths that are files.
 Paths Paths.flatten()
          Returns a Paths object containing the paths that are files, as if each file were selected from its parent directory.
 Paths Paths.glob(java.lang.String dir, java.util.List<java.lang.String> patterns)
          Calls glob(String, String...).
 Paths Paths.glob(java.lang.String dir, java.lang.String... patterns)
          Collects all files and directories in the specified directory matching the wildcard patterns.
 Paths Paths.regex(java.lang.String dir, java.lang.String... patterns)
          Collects all files and directories in the specified directory matching the regular expression patterns.
 

Methods in com.eu.miscedautils.CommonUtils with parameters of type Paths
 void Paths.add(Paths paths)
          Adds all paths from the specified Paths object to this Paths object.