WindowsArchitecture enum

Architectures supported by Windows.

Inheritance
Available extensions

Values

ARM64EC → const WindowsArchitecture

ARM64 Emulation Compatible (x64 on ARM64).

const WindowsArchitecture(Architecture.aarch64)
ARM64 → const WindowsArchitecture

Native 64-bit ARM.

const WindowsArchitecture(Architecture.aarch64)
ARM → const WindowsArchitecture

Native 32-bit ARM.

const WindowsArchitecture(Architecture.arm)
x64 → const WindowsArchitecture

64-bit x86 (AMD64/Intel64).

const WindowsArchitecture(Architecture.amd64)
x86 → const WindowsArchitecture

32-bit x86.

const WindowsArchitecture(Architecture.x86)

Properties

architecture Architecture
The underlying hardware architecture.
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<WindowsArchitecture>
A constant List of the values in this enum, in order of their declaration.