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