|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FileAccessClass | |
|---|---|
| net.sf.mmm.util.file.api | Provides the API for utilities that help to deal with Files. |
| net.sf.mmm.util.file.base | Contains public implementations of File-utilities. |
| Uses of FileAccessClass in net.sf.mmm.util.file.api |
|---|
| Methods in net.sf.mmm.util.file.api that return FileAccessClass | |
|---|---|
static FileAccessClass |
FileAccessClass.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FileAccessClass[] |
FileAccessClass.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods in net.sf.mmm.util.file.api with parameters of type FileAccessClass | |
|---|---|
FileAccessPermissions |
FileUtil.getPermissions(File file,
FileAccessClass accessClass)
This method gets the permissions of the given
file. |
| Uses of FileAccessClass in net.sf.mmm.util.file.base |
|---|
| Methods in net.sf.mmm.util.file.base with parameters of type FileAccessClass | |
|---|---|
FileAccessPermissions |
FileUtilImpl.getPermissions(File file,
FileAccessClass accessClass)
This method gets the permissions of the given
file. |
private boolean |
FileAccessPermissions.hasFlag(FileAccessClass fileModeClass,
int bitMask)
This method determines if the flag(s) given by bitMask is set
in this mask for the given
fileModeClass. |
boolean |
FileAccessPermissions.isExecutable(FileAccessClass fileModeClass)
This method determines if this mask is executable
for the given fileModeClass. |
boolean |
FileAccessPermissions.isReadable(FileAccessClass fileModeClass)
This method determines if this mask is readable for
the given fileModeClass. |
boolean |
FileAccessPermissions.isWritable(FileAccessClass fileModeClass)
This method determines if this mask is writable for
the given fileModeClass. |
void |
FileAccessPermissions.setExecutable(FileAccessClass fileModeClass,
boolean executable)
This method sets the executable flag
of this this mask for the given
fileModeClass to the given value (executable). |
private void |
FileAccessPermissions.setFlag(FileAccessClass fileModeClass,
int bitMask,
boolean flag)
This method sets the flag(s) given by bitMask of this this
mask for the given fileModeClass to the
given value (flag). |
void |
FileAccessPermissions.setReadable(FileAccessClass fileModeClass,
boolean readable)
This method sets the readable flag of
this this mask for the given
fileModeClass to the given value (readable). |
void |
FileAccessPermissions.setWritable(FileAccessClass fileModeClass,
boolean writable)
This method sets the writable flag of
this this mask for the given
fileModeClass to the given value (writable). |
private int |
FileAccessPermissions.shiftMask(FileAccessClass fileModeClass,
int bitMask)
This method shifts the given bitMask according to the given
fileModeClass. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||