public static enum Platform.ARCHITECTURE extends Enum<Platform.ARCHITECTURE>
Modifier and Type | Method and Description |
---|---|
static Platform.ARCHITECTURE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Platform.ARCHITECTURE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.ARCHITECTURE AMD64
public static final Platform.ARCHITECTURE X86
public static final Platform.ARCHITECTURE ARM
public static Platform.ARCHITECTURE[] values()
for (Platform.ARCHITECTURE c : Platform.ARCHITECTURE.values()) System.out.println(c);
public static Platform.ARCHITECTURE 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–2021. All rights reserved.