ArchFamily

enum ArchFamily : ProtocolMessageEnum
Enumerates known architecture families.
Protobuf enum elide.machine.ArchFamily

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
The architecture family is unknown, unrecognized, or backwards-incompatible.
ARCH_FAMILY_UNKNOWN = 0;
Link copied to clipboard
val ARM_VALUE: Int = 2
The ARM family of architectures.
ARM = 2;
Link copied to clipboard
val X86_VALUE: Int = 1
The x86 family of architectures.
X86 = 1;

Functions

Link copied to clipboard
open fun forNumber(value: Int): ArchFamily
Link copied to clipboard
fun getDescriptor(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getDescriptorForType(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
fun getValueDescriptor(): Descriptors.EnumValueDescriptor
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<ArchFamily>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): ArchFamily
open fun valueOf(value: Int): ArchFamily

open fun valueOf(name: String): ArchFamily

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
open fun values(): Array<ArchFamily>

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.