public enum FileSystemAccess extends Enum<FileSystemAccess>
Enum Constant and Description |
---|
RELATIVE
Access to files relative to the application's working
directory including the Java class path.
|
ROOT
Access to the full file system, starting at "/",
Limited by the operating systems permission for
the user running the app.
|
Modifier and Type | Method and Description |
---|---|
static FileSystemAccess |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileSystemAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSystemAccess ROOT
public static final FileSystemAccess RELATIVE
public static FileSystemAccess[] values()
for (FileSystemAccess c : FileSystemAccess.values()) System.out.println(c);
public static FileSystemAccess 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 © 2023 Eclipse. All rights reserved.