public enum FileAccessClass extends Enum<FileAccessClass>
Enum Constant and Description |
---|
GROUP
The class for the permissions of the group.
|
OTHERS
The class for the permissions for all others.
|
USER
The class for the permissions of the user (owner).
|
Modifier and Type | Method and Description |
---|---|
static FileAccessClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileAccessClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileAccessClass USER
public static final FileAccessClass GROUP
public static final FileAccessClass OTHERS
public static FileAccessClass[] values()
for (FileAccessClass c : FileAccessClass.values()) System.out.println(c);
public static FileAccessClass valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2001–2016 mmm-Team. All rights reserved.