Enum ResourceAccuracy

  • All Implemented Interfaces:
    Serializable, Comparable<ResourceAccuracy>


    public enum ResourceAccuracy
    extends Enum<ResourceAccuracy>
    ResourceAccuracy reflects the accuracy of an amount being requested though a ResourceMeter. For most tangible resources the value is HIGHEST. For the HEAP_RETAINED meter, the enumeration reflects the accuracy based on the current knowledge or lack thereof about the contents of the heap.
    Since:
    8u40
    • Enum Constant Detail

      • MEDIUM

        public static final ResourceAccuracy MEDIUM
        The ResourceAccuracy is medium.
      • HIGHEST

        public static final ResourceAccuracy HIGHEST
        The ResourceAccuracy is highest.
    • Method Detail

      • values

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

        public static ResourceAccuracy 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
      • improve

        public ResourceAccuracy improve​()
        Returns the next improved ResourceAccuracy. If the accuracy cannot be improved, then HIGHEST is returned.
        Returns:
        the next improved ResourceAccuracy