com.pi4j.boardinfo.definition.InstructionSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pi4j-core Show documentation
Show all versions of pi4j-core Show documentation
Pi4J Java API & Runtime Library
The newest version!
package com.pi4j.boardinfo.definition;
public enum InstructionSet {
ARM_V6_M("ARMv6-M"),
ARM_V6("ARMv6"),
ARM_V7("ARMv7"),
ARM_V8("ARMv8"),
UNKNOWN("Unknown");
private final String label;
InstructionSet(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
}