Package org.uberfire.java.nio.file
Class FileSystems
- java.lang.Object
-
- org.uberfire.java.nio.file.FileSystems
-
public final class FileSystems extends Object
Back port of JSR-203 from Java Platform, Standard Edition 7.- See Also:
- Original JavaDoc
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.uberfire.java.nio.file.FileSystemgetDefault()static org.uberfire.java.nio.file.FileSystemgetFileSystem(URI uri)static org.uberfire.java.nio.file.FileSystemnewFileSystem(URI uri, Map<String,?> env)static org.uberfire.java.nio.file.FileSystemnewFileSystem(URI uri, Map<String,?> env, ClassLoader loader)static org.uberfire.java.nio.file.FileSystemnewFileSystem(org.uberfire.java.nio.file.Path path, ClassLoader loader)
-
-
-
Method Detail
-
getDefault
public static org.uberfire.java.nio.file.FileSystem getDefault()
- See Also:
- Original JavaDoc
-
getFileSystem
public static org.uberfire.java.nio.file.FileSystem getFileSystem(URI uri) throws IllegalArgumentException, org.uberfire.java.nio.file.FileSystemNotFoundException, org.uberfire.java.nio.file.ProviderNotFoundException, SecurityException
- Throws:
IllegalArgumentExceptionorg.uberfire.java.nio.file.FileSystemNotFoundExceptionorg.uberfire.java.nio.file.ProviderNotFoundExceptionSecurityException- See Also:
- Original JavaDoc
-
newFileSystem
public static org.uberfire.java.nio.file.FileSystem newFileSystem(URI uri, Map<String,?> env) throws IllegalArgumentException, org.uberfire.java.nio.file.FileSystemAlreadyExistsException, org.uberfire.java.nio.file.ProviderNotFoundException, org.uberfire.java.nio.IOException, SecurityException
- Throws:
IllegalArgumentExceptionorg.uberfire.java.nio.file.FileSystemAlreadyExistsExceptionorg.uberfire.java.nio.file.ProviderNotFoundExceptionorg.uberfire.java.nio.IOExceptionSecurityException- See Also:
- Original JavaDoc
-
newFileSystem
public static org.uberfire.java.nio.file.FileSystem newFileSystem(org.uberfire.java.nio.file.Path path, ClassLoader loader) throws IllegalArgumentException, org.uberfire.java.nio.file.ProviderNotFoundException, ServiceConfigurationError, org.uberfire.java.nio.IOException, SecurityException- Throws:
IllegalArgumentExceptionorg.uberfire.java.nio.file.ProviderNotFoundExceptionServiceConfigurationErrororg.uberfire.java.nio.IOExceptionSecurityException- See Also:
- Original JavaDoc
-
newFileSystem
public static org.uberfire.java.nio.file.FileSystem newFileSystem(URI uri, Map<String,?> env, ClassLoader loader) throws IllegalArgumentException, org.uberfire.java.nio.file.FileSystemAlreadyExistsException, org.uberfire.java.nio.file.ProviderNotFoundException, ServiceConfigurationError, org.uberfire.java.nio.IOException, SecurityException
- Throws:
IllegalArgumentExceptionorg.uberfire.java.nio.file.FileSystemAlreadyExistsExceptionorg.uberfire.java.nio.file.ProviderNotFoundExceptionServiceConfigurationErrororg.uberfire.java.nio.IOExceptionSecurityException- See Also:
- Original JavaDoc
-
-