Enum Platform.Architecture
- java.lang.Object
- 
- java.lang.Enum<Platform.Architecture>
- 
- com.inductiveautomation.ignition.common.util.Platform.Architecture
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<Platform.Architecture>
 - Enclosing class:
- Platform
 
 public static enum Platform.Architecture extends java.lang.Enum<Platform.Architecture> 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Platform.ArchitecturefromString(java.lang.String s)java.lang.String[]getSignatures()Signature strings that if System.getProperty("os.arch") equals any of indicates a match.static Platform.ArchitecturevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Platform.Architecture[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
X86public static final Platform.Architecture X86 
 - 
X64public static final Platform.Architecture X64 
 - 
Itaniumpublic static final Platform.Architecture Itanium 
 - 
ARMpublic static final Platform.Architecture ARM 
 - 
AARCH_64public static final Platform.Architecture AARCH_64 
 - 
Unknownpublic static final Platform.Architecture Unknown 
 
- 
 - 
Method Detail- 
valuespublic static Platform.Architecture[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Platform.Architecture c : Platform.Architecture.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Platform.Architecture valueOf(java.lang.String name) 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.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getSignaturespublic java.lang.String[] getSignatures() Signature strings that if System.getProperty("os.arch") equals any of indicates a match.- Returns:
- Signature strings.
 
 - 
fromStringpublic static Platform.Architecture fromString(java.lang.String s) 
 
- 
 
-