public static enum FileUtils.Platform extends Enum<FileUtils.Platform>
| Modifier and Type | Method and Description |
|---|---|
static FileUtils.Platform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileUtils.Platform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileUtils.Platform WINDOWS
public static final FileUtils.Platform MAC
public static final FileUtils.Platform UNIX
public static final FileUtils.Platform UNKNOWN
public static FileUtils.Platform[] values()
for (FileUtils.Platform c : FileUtils.Platform.values()) System.out.println(c);
public static FileUtils.Platform 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 © 2019. All rights reserved.