public enum FileSystemMessage extends java.lang.Enum<FileSystemMessage>
Enum Constant and Description |
---|
ACCESS_IS_DENIED |
Modifier and Type | Field and Description |
---|---|
(package private) java.lang.String |
msg |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMsg() |
static FileSystemMessage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileSystemMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSystemMessage ACCESS_IS_DENIED
public static FileSystemMessage[] values()
for (FileSystemMessage c : FileSystemMessage.values()) System.out.println(c);
public static FileSystemMessage valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getMsg()
Copyright © 2005-2013 java.net. All Rights Reserved.