public static enum WorkspacePlugin.WorkspaceDirAccessMode extends Enum<WorkspacePlugin.WorkspaceDirAccessMode>
| Enum Constant and Description |
|---|
PEEK
Indicates the caller simply wants to peek at the Workspace directory.
|
READ
Indicates the caller will read from the Workspace directory and does not want
it to be modified until it is released.
|
READ_WRITE
Indicates the caller will modify the Workspace directory.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkspacePlugin.WorkspaceDirAccessMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkspacePlugin.WorkspaceDirAccessMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkspacePlugin.WorkspaceDirAccessMode PEEK
public static final WorkspacePlugin.WorkspaceDirAccessMode READ
public static final WorkspacePlugin.WorkspaceDirAccessMode READ_WRITE
public static WorkspacePlugin.WorkspaceDirAccessMode[] values()
for (WorkspacePlugin.WorkspaceDirAccessMode c : WorkspacePlugin.WorkspaceDirAccessMode.values()) System.out.println(c);
public static WorkspacePlugin.WorkspaceDirAccessMode 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 © 2015–2017 AZYVA INC.. All rights reserved.