public static enum Processor.Arch extends java.lang.Enum<Processor.Arch>
Processor.Arch
enum defines the architecture of
a microprocessor. The architecture represents the bit value
of the microprocessor.
The following architectures are defined:
Enum Constant and Description |
---|
BIT_32
A 32-bit processor architecture.
|
BIT_64
A 64-bit processor architecture.
|
UNKNOWN
An unknown-bit processor architecture.
|
Modifier and Type | Method and Description |
---|---|
static Processor.Arch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Processor.Arch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Processor.Arch BIT_32
public static final Processor.Arch BIT_64
public static final Processor.Arch UNKNOWN
public static Processor.Arch[] values()
for (Processor.Arch c : Processor.Arch.values()) System.out.println(c);
public static Processor.Arch valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2010 - 2020 Adobe. All Rights Reserved