public enum PlatformArchitecture extends Enum<PlatformArchitecture>
Enum Constant and Description |
---|
X64
Enum value for 64 bit platform.
|
X86
Enum value for 32 bit platform.
|
Modifier and Type | Method and Description |
---|---|
static PlatformArchitecture |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformArchitecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformArchitecture X86
public static final PlatformArchitecture X64
public static PlatformArchitecture[] values()
for (PlatformArchitecture c : PlatformArchitecture.values()) System.out.println(c);
public static PlatformArchitecture 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 © 2019. All rights reserved.