Enum Platform.CPUType

    • Enum Constant Detail

      • ARM

        public static final Platform.CPUType ARM
        ARM 32bit default, usually little endian
      • ARMv5

        public static final Platform.CPUType ARMv5
        ARM7EJ, ARM9E, ARM10E, XScale, usually little endian
      • ARMv6

        public static final Platform.CPUType ARMv6
        ARM11, usually little endian
      • ARMv7

        public static final Platform.CPUType ARMv7
        ARM Cortex, usually little endian
      • PPC

        public static final Platform.CPUType PPC
        PPC 32bit default, usually big endian
      • MIPS_32

        public static final Platform.CPUType MIPS_32
        MIPS 32bit, big endian (mips) or little endian (mipsel)
      • SuperH

        public static final Platform.CPUType SuperH
        Hitachi SuperH 32bit default, ??? endian
      • SPARC_32

        public static final Platform.CPUType SPARC_32
        SPARC 32bit, big endian
      • ARM64

        public static final Platform.CPUType ARM64
        ARM64 default (64bit), usually little endian
      • ARMv8_A

        public static final Platform.CPUType ARMv8_A
        ARM AArch64 (64bit), usually little endian
      • PPC64

        public static final Platform.CPUType PPC64
        PPC 64bit default, usually big endian
      • MIPS_64

        public static final Platform.CPUType MIPS_64
        MIPS 64bit, big endian (mips64) or little endian (mipsel64) ?
      • IA64

        public static final Platform.CPUType IA64
        Itanium 64bit default, little endian
      • SPARCV9_64

        public static final Platform.CPUType SPARCV9_64
        SPARC 64bit, big endian
      • PA_RISC2_0

        public static final Platform.CPUType PA_RISC2_0
        PA_RISC2_0 64bit, ??? endian
    • Method Detail

      • values

        public static Platform.CPUType[] 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.CPUType c : Platform.CPUType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Platform.CPUType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null