public enum OSSupported extends Enum<OSSupported>
| Enum Constant and Description |
|---|
OS_X
Mac.
|
SOLARIS
Unix.
|
UNIX
Unix.
|
WINDOWS
Windows.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName()
Getter accessor for attribute 'name'.
|
static OSSupported |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OSSupported[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OSSupported WINDOWS
public static final OSSupported OS_X
public static final OSSupported UNIX
public static final OSSupported SOLARIS
public static OSSupported[] values()
for (OSSupported c : OSSupported.values()) System.out.println(c);
public static OSSupported 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 nullpublic String getName()
Copyright © 2013–2017 FF4J. All rights reserved.