public enum CommonArchitecture extends Enum<CommonArchitecture> implements Architecture
| Modifier and Type | Method and Description |
|---|---|
BitSize |
bitSize() |
CPUType |
cpuType() |
List<Peculiarity> |
pecularities() |
static CommonArchitecture |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommonArchitecture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfasList, emptypublic static final CommonArchitecture X86_64
public static final CommonArchitecture X86_32
public static final CommonArchitecture ARM_64
public static final CommonArchitecture ARM_32
public static CommonArchitecture[] values()
for (CommonArchitecture c : CommonArchitecture.values()) System.out.println(c);
public static CommonArchitecture 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 CPUType cpuType()
cpuType in interface Architecturepublic BitSize bitSize()
bitSize in interface Architecturepublic List<Peculiarity> pecularities()
pecularities in interface HasPecularitiesCopyright © 2022. All rights reserved.