Package jnr.a64asm

Enum PREF_ENUM

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<PREF_ENUM>

    public enum PREF_ENUM
    extends java.lang.Enum<PREF_ENUM>
    • Enum Constant Detail

      • PLDL1KEEP

        public static final PREF_ENUM PLDL1KEEP
      • PLDL1STRM

        public static final PREF_ENUM PLDL1STRM
      • PLDL2KEEP

        public static final PREF_ENUM PLDL2KEEP
      • PLDL2STRM

        public static final PREF_ENUM PLDL2STRM
      • PLDL3KEEP

        public static final PREF_ENUM PLDL3KEEP
      • PLDL3STRM

        public static final PREF_ENUM PLDL3STRM
      • PSTL1KEEP

        public static final PREF_ENUM PSTL1KEEP
      • PSTL1STRM

        public static final PREF_ENUM PSTL1STRM
      • PSTL2KEEP

        public static final PREF_ENUM PSTL2KEEP
      • PSTL2STRM

        public static final PREF_ENUM PSTL2STRM
      • PSTL3KEEP

        public static final PREF_ENUM PSTL3KEEP
      • PSTL3STRM

        public static final PREF_ENUM PSTL3STRM
      • PLIL1KEEP

        public static final PREF_ENUM PLIL1KEEP
      • PLIL1STRM

        public static final PREF_ENUM PLIL1STRM
      • PLIL2KEEP

        public static final PREF_ENUM PLIL2KEEP
      • PLIL2STRM

        public static final PREF_ENUM PLIL2STRM
      • PLIL3KEEP

        public static final PREF_ENUM PLIL3KEEP
      • PLIL3STRM

        public static final PREF_ENUM PLIL3STRM
    • Constructor Detail

      • PREF_ENUM

        private PREF_ENUM()
    • Method Detail

      • values

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

        public static PREF_ENUM 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