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