public static enum File.TRANSFER extends Enum<File.TRANSFER>
Modifier and Type | Method and Description |
---|---|
static File.TRANSFER |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static File.TRANSFER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final File.TRANSFER TRUE
public static final File.TRANSFER FALSE
public static final File.TRANSFER OPTIONAL
public static File.TRANSFER[] values()
for (File.TRANSFER c : File.TRANSFER.values()) System.out.println(c);
public static File.TRANSFER 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 null