public static enum PathExtension.OS extends Enum<PathExtension.OS>
| Modifier and Type | Method and Description |
|---|---|
static PathExtension.OS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathExtension.OS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathExtension.OS Win
public static final PathExtension.OS Mac
public static final PathExtension.OS Unix
public static final PathExtension.OS Solaris
public static final PathExtension.OS Others
public static PathExtension.OS[] values()
for (PathExtension.OS c : PathExtension.OS.values()) System.out.println(c);
public static PathExtension.OS 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 © 2016. All rights reserved.