public static enum FunctionResult.Failure extends java.lang.Enum<FunctionResult.Failure>
Enum Constant and Description |
---|
Generic |
NoSuchFile |
NotADirectory |
Permissions |
Modifier and Type | Method and Description |
---|---|
static FunctionResult.Failure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FunctionResult.Failure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionResult.Failure Generic
public static final FunctionResult.Failure NoSuchFile
public static final FunctionResult.Failure NotADirectory
public static final FunctionResult.Failure Permissions
public static FunctionResult.Failure[] values()
for (FunctionResult.Failure c : FunctionResult.Failure.values()) System.out.println(c);
public static FunctionResult.Failure 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 null