public static enum ProcessorArchitecture.MemoryAddressSize extends Enum<ProcessorArchitecture.MemoryAddressSize>
Enum Constant and Description |
---|
_32_BIT
32 bit memory address size.
|
_64_BIT
64 bit memory address size.
|
Modifier and Type | Method and Description |
---|---|
static ProcessorArchitecture.MemoryAddressSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessorArchitecture.MemoryAddressSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessorArchitecture.MemoryAddressSize _32_BIT
public static final ProcessorArchitecture.MemoryAddressSize _64_BIT
public static ProcessorArchitecture.MemoryAddressSize[] values()
for (ProcessorArchitecture.MemoryAddressSize c : ProcessorArchitecture.MemoryAddressSize.values()) System.out.println(c);
public static ProcessorArchitecture.MemoryAddressSize 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 © 2014–2024 The Apache Software Foundation. All rights reserved.