public static enum NativeSystem.Arch extends Enum<NativeSystem.Arch>
NativeSystem
Enum Constant and Description |
---|
ARM
The arm6j architecture.
|
PPC
The ppc architecture.
|
PPC64
The ppc64 architecture.
|
SPARC
The sparc architecture.
|
SPARC64
The sparc64 architecture.
|
UNSUPPORTED
Any unsupported system architecture.
|
x86
The x86 architecture.
|
x86_64
The amd64 architecture.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static NativeSystem.Arch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NativeSystem.Arch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeSystem.Arch ARM
public static final NativeSystem.Arch SPARC
public static final NativeSystem.Arch SPARC64
public static final NativeSystem.Arch PPC
public static final NativeSystem.Arch PPC64
public static final NativeSystem.Arch x86
public static final NativeSystem.Arch x86_64
public static final NativeSystem.Arch UNSUPPORTED
public static NativeSystem.Arch[] values()
for (NativeSystem.Arch c : NativeSystem.Arch.values()) System.out.println(c);
public static NativeSystem.Arch 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 toString()
toString
in class Enum<NativeSystem.Arch>
Copyright © 2006-2017 ${project.vendor}. All Rights Received.