public enum FileSystemMessage extends Enum<FileSystemMessage>
Enum Constant and Description |
---|
ACCESS_IS_DENIED |
PERMISSION_DENIED |
Modifier and Type | Method and Description |
---|---|
String |
getMsg() |
static FileSystemMessage |
valueOf(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 final FileSystemMessage PERMISSION_DENIED
public static FileSystemMessage[] values()
for (FileSystemMessage c : FileSystemMessage.values()) System.out.println(c);
public static FileSystemMessage 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 nullpublic String getMsg()
Copyright © 2005–2020 jthink.net. All rights reserved.