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