Enum AccessFlags

    • Field Detail

      • flags_DIRTY_VOLATILE

        private static final java.util.Set<AccessFlags> flags_DIRTY_VOLATILE
      • flags_DIRTY

        private static final java.util.Set<AccessFlags> flags_DIRTY
      • flags_VOLATILE

        private static final java.util.Set<AccessFlags> flags_VOLATILE
      • flags_NONE

        private static final java.util.Set<AccessFlags> flags_NONE
    • Constructor Detail

      • AccessFlags

        private AccessFlags()
    • Method Detail

      • values

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

        public static AccessFlags 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
      • ofAccess

        public static java.util.Set<AccessFlags> ofAccess​(java.lang.Object access)
      • setOf

        public static java.util.Set<AccessFlags> setOf()
      • fromBooleansDirtyVolatile

        public static java.util.Set<AccessFlags> fromBooleansDirtyVolatile​(boolean dirtyAccesses,
                                                                           boolean volatileAccesses)