LinuxArchitecture enum

Package architecture, named the way nfpm expects it.

Inheritance
Available extensions

Values

amd64 → const LinuxArchitecture

64-bit x86, published as amd64 for deb and x86_64 for rpm.

const LinuxArchitecture('amd64', <String>['amd64', 'x64', 'x86_64'])
arm64 → const LinuxArchitecture

64-bit ARM, published as arm64 for deb and aarch64 for rpm.

const LinuxArchitecture('arm64', <String>['arm64', 'aarch64'])

Properties

aliases → List<String>
Spellings accepted from the caller.
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
nfpmName → String
Name nfpm uses, which it maps per packager.
final
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

Static Methods

parse(String value) → LinuxArchitecture
Parses an architecture spelling, rejecting anything unsupported.

Constants

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