Package org.assertj.core.internal
Class NioFilesWrapper
- java.lang.Object
-
- org.assertj.core.internal.NioFilesWrapper
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
exists(Path path, LinkOption... options)
static NioFilesWrapper
instance()
Returns the singleton instance of this class.boolean
isDirectory(Path path)
boolean
isExecutable(Path path)
boolean
isReadable(Path path)
boolean
isRegularFile(Path path)
boolean
isSymbolicLink(Path path)
boolean
isWritable(Path path)
boolean
notExists(Path path, LinkOption... options)
-
-
-
Method Detail
-
instance
public static NioFilesWrapper instance()
Returns the singleton instance of this class.- Returns:
- the singleton instance of this class.
-
isRegularFile
public boolean isRegularFile(Path path)
-
isSymbolicLink
public boolean isSymbolicLink(Path path)
-
isDirectory
public boolean isDirectory(Path path)
-
exists
public boolean exists(Path path, LinkOption... options)
-
notExists
public boolean notExists(Path path, LinkOption... options)
-
isReadable
public boolean isReadable(Path path)
-
isWritable
public boolean isWritable(Path path)
-
isExecutable
public boolean isExecutable(Path path)
-
-