Enum ResourceAccuracy

  • All Implemented Interfaces:
    Serializable, Comparable<ResourceAccuracy>

    @Deprecated(since="10",
                forRemoval=true)
    public enum ResourceAccuracy
    extends Enum<ResourceAccuracy>
    Deprecated, for removal: This API element is subject to removal in a future version.
    Resource Management is deprecated for removal with no replacement.
    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 Summary

      Enum Constants 
      Enum Constant Description
      HIGH
      Deprecated, for removal: This API element is subject to removal in a future version.
      The ResourceAccuracy is high.
      HIGHEST
      Deprecated, for removal: This API element is subject to removal in a future version.
      The ResourceAccuracy is highest.
      LOW
      Deprecated, for removal: This API element is subject to removal in a future version.
      The ResourceAccuracy is low.
      MEDIUM
      Deprecated, for removal: This API element is subject to removal in a future version.
      The ResourceAccuracy is medium.
    • Enum Constant Detail

      • LOW

        public static final ResourceAccuracy LOW
        Deprecated, for removal: This API element is subject to removal in a future version.
        The ResourceAccuracy is low.
      • MEDIUM

        public static final ResourceAccuracy MEDIUM
        Deprecated, for removal: This API element is subject to removal in a future version.
        The ResourceAccuracy is medium.
      • HIGH

        public static final ResourceAccuracy HIGH
        Deprecated, for removal: This API element is subject to removal in a future version.
        The ResourceAccuracy is high.
      • HIGHEST

        public static final ResourceAccuracy HIGHEST
        Deprecated, for removal: This API element is subject to removal in a future version.
        The ResourceAccuracy is highest.
    • Method Detail

      • values

        public static ResourceAccuracy[] values()
        Deprecated, for removal: This API element is subject to removal in a future version.
        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)
        Deprecated, for removal: This API element is subject to removal in a future version.
        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()
        Deprecated, for removal: This API element is subject to removal in a future version.
        Returns the next improved ResourceAccuracy. If the accuracy cannot be improved, then HIGHEST is returned.
        Returns:
        the next improved ResourceAccuracy